diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-05 00:17:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-05 00:17:47 -0400 |
commit | 9e89daf21353d3739d84ed25ae99aab82704df97 (patch) | |
tree | d7e3d910fc6646515c7869f5177a8c26cb6e35ca /config.in | |
parent | aa35715f4bf840927e602004dc1612e3b049ed75 (diff) | |
parent | f77986338fc4186d003908012685c12d718ed647 (diff) |
Merge pull request #1734 from swaywm/resize-cmd
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" |