Swapped resize commands. Right now grows windows in width and Left shrinks window width.

This commit is contained in:
RealStickman 2020-02-13 14:32:08 +00:00
parent fb4a520d82
commit ecd0c11d2f

View File

@ -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 windows width.
# Pressing left will grow the windows width.
# Pressing left will shrink the windows width.
# Pressing right will grow the windows width.
# Pressing down will shrink the windows height.
# Pressing up will grow the windows 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"