diff options
author | sefidel <contact@sefidel.net> | 2023-11-17 15:09:28 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-11-17 15:09:28 +0900 |
commit | 48359a6b433bf15896a27e05eff4ae19598b776a (patch) | |
tree | 8a93c3ff62ce7c58d2ec373810346a1ed9f28d70 /home | |
parent | ca4cf27840e0a407a5c5d46c391731a1b4c35f5e (diff) | |
download | nixrc-48359a6b433bf15896a27e05eff4ae19598b776a.tar.gz nixrc-48359a6b433bf15896a27e05eff4ae19598b776a.zip |
feat(home/gui): sway: add keybinds for moving container to outputs
Diffstat (limited to 'home')
-rw-r--r-- | home/profiles/gui/config/sway.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/home/profiles/gui/config/sway.nix b/home/profiles/gui/config/sway.nix index f97e5e9..5dbe7a7 100644 --- a/home/profiles/gui/config/sway.nix +++ b/home/profiles/gui/config/sway.nix @@ -131,6 +131,12 @@ in bindsym $mod+Shift+z move container to workspace prev bindsym $mod+Shift+x move container to workspace next + # move container to different display + bindsym $mod+$alt+Left move container to output left + bindsym $mod+$alt+Right move container to output right + bindsym $mod+$alt+Up move container to output up + bindsym $mod+$alt+Down move container to output down + # move ws to different display bindsym $mod+Ctrl+Left move workspace to output left bindsym $mod+Ctrl+Right move workspace to output right |