commit a674173abda8adc36d477f08bfa7fcb7a19e4f7c
parent 57be677b323adaa4a49a6d28a90e09e9b23719aa
Author: Chris Bracken <chris@bracken.jp>
Date: Mon, 4 May 2020 08:46:36 -0700
i3, sway: swap vertical grow/shrink bindings
Intuitively, I find I use j/down for shrink and k/up for grow.
Mapping is now:
* left, h: shrink horizontal
* right, l: grow horizontal
* down, j: shrink vertical
* up, k: grow vertical
Diffstat:
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/.config/i3/config b/.config/i3/config
@@ -230,14 +230,14 @@ bindsym $mod+minus scratchpad show
mode "resize" {
# Shrink or grow the container's width, height.
bindsym $left resize shrink width 10px
- bindsym $down resize grow height 10px
- bindsym $up resize shrink height 10px
+ bindsym $down resize shrink height 10px
+ bindsym $up resize grow height 10px
bindsym $right resize grow width 10px
# Ditto, with arrow keys.
bindsym Left resize shrink width 10px
- bindsym Down resize grow height 10px
- bindsym Up resize shrink height 10px
+ bindsym Down resize shrink height 10px
+ bindsym Up resize grow height 10px
bindsym Right resize grow width 10px
# Return to default mode on Return or Esc.
diff --git a/.config/sway/config b/.config/sway/config
@@ -258,14 +258,14 @@ bindsym $mod+minus scratchpad show
mode "resize" {
# Shrink or grow the container's width, height.
bindsym $left resize shrink width 10px
- bindsym $down resize grow height 10px
- bindsym $up resize shrink height 10px
+ bindsym $down resize shrink height 10px
+ bindsym $up resize grow height 10px
bindsym $right resize grow width 10px
# Ditto, with arrow keys.
bindsym Left resize shrink width 10px
- bindsym Down resize grow height 10px
- bindsym Up resize shrink height 10px
+ bindsym Down resize shrink height 10px
+ bindsym Up resize grow height 10px
bindsym Right resize grow width 10px
# Return to default mode on Return or Esc.