mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 02:50:24 +10:00
Fixing expand/shrink windows in bspwm
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user