new_dots/home/modules/sxhkd.nix
2026-01-03 16:51:42 +01:00

22 lines
637 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 focused:^1";
"super + ecaron" = "bspc desktop --focus focused:^2";
"super + scaron" = "bspc desktop --focus focused:^3";
"super + ccaron" = "bspc desktop --focus focused:^4";
"super + rcaron" = "bspc desktop --focus focused:^5";
};
};
}