new_dots/home/modules/sxhkd.nix
2026-01-03 14:26:46 +01:00

22 lines
554 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 + @10" = "bspc desktop -f I";
"super + ě" = "bspc desktop -f II";
"super + š" = "bspc desktop -f III";
"super + č" = "bspc desktop -f IV";
"super + ř" = "bspc desktop -f V";
};
};
}