From 6e9e7ae1b97c04fe9ffbec13f0944cd3c7aaa44f Mon Sep 17 00:00:00 2001 From: RealStickman Date: Wed, 15 Apr 2020 14:00:17 +0000 Subject: [PATCH] Resizing made quicker by doubling growth/shrinkage with Shift key pressed. --- arch-config/.config/i3/config | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/arch-config/.config/i3/config b/arch-config/.config/i3/config index 18a3464b..ef7ff6cd 100644 --- a/arch-config/.config/i3/config +++ b/arch-config/.config/i3/config @@ -269,15 +269,23 @@ mode "resize" { # Pressing down will shrink the window’s height. # Pressing up will grow the window’s height. bindsym $left resize shrink width 10 px or 10 ppt + bindsym Shift+$left resize shrink width 20 px or 20 ppt bindsym $up resize grow height 10 px or 10 ppt + bindsym Shift+$up resize grow height 20 px or 20 ppt bindsym $down resize shrink height 10 px or 10 ppt + bindsym Shift+$down resize shrink height 20 px or 20 ppt bindsym $right resize grow width 10 px or 10 ppt + bindsym Shift+$right resize grow width 20 px or 20 ppt # same bindings, but for the arrow keys bindsym Left resize shrink width 10 px or 10 ppt + bindsym Shift+Left resize shrink width 20 px or 20 ppt bindsym Up resize grow height 10 px or 10 ppt + bindsym Shift+Up resize grow height 20 px or 20 ppt bindsym Down resize shrink height 10 px or 10 ppt + bindsym Shift+Down resize shrink height 20 px or 20 ppt bindsym Right resize grow width 10 px or 10 ppt + bindsym Shift+Right resize grow width 20 px or 20 ppt # back to normal: Enter or Escape bindsym Return mode "default"