From db7472253eb1304da3784baf6304f4d2b5eba2ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Wadstr=C3=B6m?= Date: Sun, 22 Sep 2024 20:41:24 +0200 Subject: [PATCH] sway: Resize with super held down. Feels more intuitive for some reason. --- .config/sway/config | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.config/sway/config b/.config/sway/config index 7916b00..f5b9a90 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -157,16 +157,16 @@ mode "resize" { # right will grow the containers width # up will shrink the containers height # down will grow the containers height - bindsym $left resize shrink width 10px - bindsym $down resize grow height 10px - bindsym $up resize shrink height 10px - bindsym $right resize grow width 10px + bindsym $mod+$left resize shrink width 10px + bindsym $mod+$down resize grow height 10px + bindsym $mod+$up resize shrink height 10px + bindsym $mod+$right resize grow width 10px # Ditto, with arrow keys - bindsym Left resize shrink width 10px - bindsym Down resize grow height 10px - bindsym Up resize shrink height 10px - bindsym Right resize grow width 10px + bindsym $mod+Left resize shrink width 10px + bindsym $mod+Down resize grow height 10px + bindsym $mod+Up resize shrink height 10px + bindsym $mod+Right resize grow width 10px # Return to default mode bindsym Return mode "default"