Reduce resize increment

This commit is contained in:
Jake Howard 2017-10-30 14:19:59 +00:00
parent 35bf54026b
commit 6eab941f5c
Signed by: jake
GPG Key ID: 57AFB45680EDD477

View File

@ -83,11 +83,12 @@ bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10 bindsym $mod+Shift+0 move container to workspace 10
# Resize # Resize
set $resize_increment 5
mode "resize" { mode "resize" {
bindsym Left resize shrink width 10 px or 10 ppt bindsym Left resize shrink width $resize_increment px or $resize_increment ppt
bindsym Down resize grow height 10 px or 10 ppt bindsym Down resize grow height $resize_increment px or $resize_increment ppt
bindsym Up resize shrink height 10 px or 10 ppt bindsym Up resize shrink height $resize_increment px or $resize_increment ppt
bindsym Right resize grow width 10 px or 10 ppt bindsym Right resize grow width $resize_increment px or $resize_increment ppt
bindsym Escape mode "default" bindsym Escape mode "default"
} }