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