add keybinding to switch bspwm nodes

This commit is contained in:
LavaDesu 2021-07-12 11:22:28 +07:00
parent 044bdc3ed9
commit 835b7895dc
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -35,6 +35,10 @@ in rec {
"super + {h,j,k,l}" = "bspc node -f {west,south,north,east}"; "super + {h,j,k,l}" = "bspc node -f {west,south,north,east}";
"super + {Left,Down,Up,Right}" = "bspc node -f {west,south,north,east}"; "super + {Left,Down,Up,Right}" = "bspc node -f {west,south,north,east}";
# Switch windows
"super + shift + {h,j,k,l}" = "bspc node -s {west,south,north,east}";
"super + shift + {Left,Down,Up,Right}" = "bspc node -s {west,south,north,east}";
# Move focused window # Move focused window
"super + shift + {1-9,0}" = "bspc node -d ^{1-9,10}"; "super + shift + {1-9,0}" = "bspc node -d ^{1-9,10}";