From ecd0c11d2fe3532276e2ace52f8ba1d7b645e944 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Thu, 13 Feb 2020 14:32:08 +0000 Subject: [PATCH] Swapped resize commands. Right now grows windows in width and Left shrinks window width. --- arch-config/.config/i3/config | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arch-config/.config/i3/config b/arch-config/.config/i3/config index d59aa9d3..20cadd95 100644 --- a/arch-config/.config/i3/config +++ b/arch-config/.config/i3/config @@ -309,20 +309,20 @@ bindsym $mod+r mode "resize" mode "resize" { # These bindings trigger as soon as you enter the resize mode - # Pressing right will shrink the window’s width. - # Pressing left will grow the window’s width. + # Pressing left will shrink the window’s width. + # Pressing right will grow the window’s width. # Pressing down will shrink the window’s height. # Pressing up will grow the window’s height. - bindsym $right resize shrink width 10 px or 10 ppt + bindsym $left resize shrink width 10 px or 10 ppt bindsym $up resize grow height 10 px or 10 ppt bindsym $down resize shrink height 10 px or 10 ppt - bindsym $left resize grow width 10 px or 10 ppt + bindsym $right resize grow width 10 px or 10 ppt # same bindings, but for the arrow keys - bindsym Right resize shrink width 10 px or 10 ppt + bindsym Left resize shrink width 10 px or 10 ppt bindsym Up resize grow height 10 px or 10 ppt bindsym Down resize shrink height 10 px or 10 ppt - bindsym Left resize grow width 10 px or 10 ppt + bindsym Right resize grow width 10 px or 10 ppt # back to normal: Enter or Escape bindsym Return mode "default"