From 6eab941f5cbf293940278faf3e46873b14946500 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 30 Oct 2017 14:19:59 +0000 Subject: [PATCH] Reduce resize increment --- modules/i3/files/i3.conf | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/i3/files/i3.conf b/modules/i3/files/i3.conf index c5e03b5..c6fc8c8 100644 --- a/modules/i3/files/i3.conf +++ b/modules/i3/files/i3.conf @@ -83,11 +83,12 @@ bindsym $mod+Shift+9 move container to workspace 9 bindsym $mod+Shift+0 move container to workspace 10 # Resize +set $resize_increment 5 mode "resize" { - 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 $resize_increment px or $resize_increment ppt + bindsym Down resize grow height $resize_increment px or $resize_increment ppt + bindsym Up resize shrink height $resize_increment px or $resize_increment ppt + bindsym Right resize grow width $resize_increment px or $resize_increment ppt bindsym Escape mode "default" }