diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-04 21:32:31 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-04-05 00:03:20 -0400 |
commit | f77986338fc4186d003908012685c12d718ed647 (patch) | |
tree | f8b1ec4af069ab2123453d713251dcd7c51767d1 /config.in | |
parent | 21aedf15052df4e7f8ee72922fa0e214d690facc (diff) |
Implement resize command
Diffstat (limited to 'config.in')
-rw-r--r-- | config.in | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -164,16 +164,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 10 px or 10 ppt - bindsym $down resize grow height 10 px or 10 ppt - bindsym $up resize shrink height 10 px or 10 ppt - bindsym $right resize grow width 10 px or 10 ppt + bindsym $left resize shrink width 10px + bindsym $down resize grow height 10px + bindsym $up resize shrink height 10px + bindsym $right resize grow width 10px # ditto, with arrow keys - bindsym Left resize shrink width 10 px or 10 ppt - bindsym Down resize grow height 10 px or 10 ppt - bindsym Up resize shrink height 10 px or 10 ppt - bindsym Right resize grow width 10 px or 10 ppt + bindsym Left resize shrink width 10px + bindsym Down resize grow height 10px + bindsym Up resize shrink height 10px + bindsym Right resize grow width 10px # return to default mode bindsym Return mode "default" |