new_dots/home/modules/sxhkd.nix
2026-01-03 14:55:11 +01:00

22 lines
596 B
Nix

{
services.sxhkd = {
enable = true;
keybindings = {
"super + q" = "bspc node -c";
"super + f" = "bspc node -t fullscreen";
"super + t" = "bspc node -t tiled";
"super + Return" = "kitty";
"super + b" = "firefox";
"super + d" = "discord";
"super + a" = "rofi -show drun";
"super + plus" = "bspc desktop --focus I";
"super + ecaron" = "bspc desktop --focus II";
"super + scaron" = "bspc desktop --focus III";
"super + ccaron" = "bspc desktop --focus IV";
"super + rcaron" = "bspc desktop --focus V";
};
};
}