diff --git a/home-manager/becky-dingleberry.nix b/home-manager/becky-dingleberry.nix index 2e20ee2..c3abb75 100644 --- a/home-manager/becky-dingleberry.nix +++ b/home-manager/becky-dingleberry.nix @@ -80,6 +80,10 @@ in ${builtins.readFile ./shared/ghostty.config} font-size = 11 + + keybind = super+c=copy_to_clipboard + keybind = super+v=paste_from_clipboard + keybind = super+t=new_tab ''; }; } @@ -177,6 +181,10 @@ in _launch = "Ctrl+Alt+T"; }; + "KDE Keyboard Layout Switcher" = { + "Switch to Next Keyboard Layout" = "none"; + }; + kded5 = { display = [ "none" @@ -207,6 +215,8 @@ in "Switch One Desktop to the Right" = "none"; "Switch One Desktop to the Left" = "none"; + + "Edit Tiles" = "none"; }; plasmashell = { @@ -306,7 +316,7 @@ in echo "Starting sync" ${pkgs.inotify-tools}/bin/inotifywait --monitor --recursive --quiet -e modify -e moved_to -e moved_from -e create -e delete /mnt/storage/.hardware/3d-print/v2-red-V2-2201270017/files | ${pkgs.writeShellScript "voron2-red-sync" '' function sync() { - rsync -avz --delete --exclude='.thumbs' /mnt/storage/.hardware/3d-print/v2-red-V2-2201270017/files/ pi@voron2-red:~/printer_data/gcodes/ + rsync -avz -e "ssh -i /home/becky/.ssh/voron2-red" --delete --exclude='.thumbs' /mnt/storage/.hardware/3d-print/v2-red-V2-2201270017/files/ pi@voron2-red:~/printer_data/gcodes/ if [[ $? -ne 0 ]]; then echo "Sync failed" fi