From 835b7895dcf782a21c9fbf397ccbfe48c910d93b Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Mon, 12 Jul 2021 11:22:28 +0700 Subject: [PATCH] add keybinding to switch bspwm nodes --- users/rin/sxhkd.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/users/rin/sxhkd.nix b/users/rin/sxhkd.nix index e96d8b4..2f6dbfc 100644 --- a/users/rin/sxhkd.nix +++ b/users/rin/sxhkd.nix @@ -35,6 +35,10 @@ in rec { "super + {h,j,k,l}" = "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 "super + shift + {1-9,0}" = "bspc node -d ^{1-9,10}";