From 7f7d3cc850a3ae5e8f432be1e442a5f614148446 Mon Sep 17 00:00:00 2001 From: Andrea Date: Mon, 14 Jul 2025 10:46:36 +0200 Subject: [PATCH] chore(sway): handle resize events with mod key --- .config/sway/config | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/sway/config b/.config/sway/config index 2b758a3..bfbb4db 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -214,13 +214,13 @@ bindsym $mod+r mode "Resize" mode "Resize" { # left will shrink the containers width - bindsym $left resize shrink width 10px + bindsym $mod+$left resize shrink width 10px # right will grow the containers width - bindsym $right resize grow width 10px + bindsym $mod+$right resize grow width 10px # up will shrink the containers height - bindsym $up resize shrink height 10px + bindsym $mod+$up resize shrink height 10px # down will grow the containers height - bindsym $down resize grow height 10px + bindsym $mod+$down resize grow height 10px # Return to default mode bindsym Escape mode "default"