22 lines
598 B
Nix
22 lines
598 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 focused:I";
|
|
"super + @11" = "bspc desktop -f focused:II";
|
|
"super + @12" = "bspc desktop -f focused:III";
|
|
"super + @13" = "bspc desktop -f focused:IV";
|
|
"super + @14" = "bspc desktop -f focused:V";
|
|
};
|
|
};
|
|
}
|