From f5fae9b42898b01d93fcad804904de0336307321 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 5 Apr 2023 08:56:54 +0100 Subject: [PATCH] Add keybind to move window between desktops --- nixos/home-manager/env/sxhkd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/home-manager/env/sxhkd.nix b/nixos/home-manager/env/sxhkd.nix index f87cc343..9b1f5de0 100644 --- a/nixos/home-manager/env/sxhkd.nix +++ b/nixos/home-manager/env/sxhkd.nix @@ -38,7 +38,7 @@ # focus the next/previous node in the current desktop "super + {_,shift + }c" = "bspc node -f {next,prev}.local"; # focus the next/previous desktop in the current monitor - "super + bracket{left,right}" = "bspc desktop -f {prev,next}.local"; + "super + {_,shift + }bracket{left,right}" = "bspc {desktop -f,node -d} {prev,next}.local"; # focus the last node/desktop "super + {grave,Tab}" = "bspc {node,desktop} -f last"; # focus the older or newer node in the focus history