Fixing expand/shrink windows in bspwm

This commit is contained in:
Derek Taylor
2023-04-04 19:01:52 -05:00
parent bb7bfda7c5
commit ff0bce02f6

View File

@@ -120,15 +120,16 @@ super + ctrl + space
super + ctrl + shift + space
bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
# MOVE/RESIZE
# expand a window by moving one of its side outward
ctrl + alt + {h,j,k,l}
bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
# contract a window by moving one of its side inward
ctrl + alt + shift + {h,j,k,l}
bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
# MOVE/RESIVE
# shrink/expand
ctrl + alt + h
bspc node -z {left -20 0} || bspc node -z {right -20 0} ||
ctrl + alt + j
bspc node -z {bottom 0 20} || bspc node -z {top 0 20}
ctrl + alt + k
bspc node -z {bottom 0 -20} || bspc node -z {top 0 -20}
ctrl + alt + l
bspc node -z {left 20 0} || bspc node -z {right 20 0}
# move a floating window
super + {Left,Down,Up,Right}