16 lines
338 B
Nix
16 lines
338 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";
|
|
};
|
|
};
|
|
}
|