2023-05-17 17:10:18 +01:00
|
|
|
{...}: {
|
2023-04-04 14:20:49 +01:00
|
|
|
services.sxhkd = {
|
|
|
|
enable = true;
|
|
|
|
keybindings = {
|
2023-04-05 09:48:05 +01:00
|
|
|
# Terminal emulators
|
2023-07-03 16:09:48 +01:00
|
|
|
"super + Return" = "alacritty";
|
2023-04-05 09:48:05 +01:00
|
|
|
"super + shift + Return" = "xfce4-terminal --drop-down";
|
|
|
|
|
|
|
|
# Launcher
|
2023-04-07 09:42:12 +01:00
|
|
|
"super + @space" = "rofi -show drun";
|
2023-04-05 09:48:05 +01:00
|
|
|
|
|
|
|
# bspwm hotkeys
|
|
|
|
"super + Escape" = "pkill -USR1 -x sxhkd";
|
|
|
|
"super + alt + {q,r}" = "bspc {quit,wm -r}";
|
2023-04-04 14:20:49 +01:00
|
|
|
"super + {_,shift + }q" = "bspc node -{c,k}";
|
2023-04-05 09:48:05 +01:00
|
|
|
"super + m" = "bspc desktop -l next";
|
|
|
|
|
|
|
|
# State/Flags
|
2023-07-03 14:26:14 +01:00
|
|
|
"super + {t,shift + t,s,shift + m}" = "bspc node -t {tiled,pseudo_tiled,floating,fullscreen}";
|
2023-04-05 09:48:05 +01:00
|
|
|
|
|
|
|
# Focus/Scap
|
2023-04-04 14:20:49 +01:00
|
|
|
"super + {_,shift + }{h,j,k,l}" = "bspc node -{f,s} {west,south,north,east}";
|
2023-04-05 09:48:05 +01:00
|
|
|
"super + {_,shift + }{Left,Down,Up,Right}" = "bspc node -{f,s} {west,south,north,east}";
|
2023-07-03 14:26:14 +01:00
|
|
|
"super + {_,shift + }{comma,period}" = "bspc {desktop -f,node -d} {prev,next}.local.occupied --follow";
|
|
|
|
"super + {_,shift + }n" = "bspc {desktop -f,node -d} next.local --follow";
|
|
|
|
"super + {_,shift + }bracket{left,right}" = "bspc {monitor -f,node -m} {prev,next} --follow";
|
2023-04-04 14:20:49 +01:00
|
|
|
"super + {grave,Tab}" = "bspc {node,desktop} -f last";
|
2023-07-03 14:26:14 +01:00
|
|
|
"super + {_,shift + }{1-9}" = "bspc {desktop -f,node -d} '^{1-9}' --follow";
|
|
|
|
# Named workspaces
|
|
|
|
"super + {_,shift + }{d,w,f,c,r}" = "bspc {desktop -f,node -d} '{dev,browser,files,chat,remote}' --follow";
|
2023-04-05 09:48:05 +01:00
|
|
|
|
2023-04-05 09:53:20 +01:00
|
|
|
# Preselect
|
|
|
|
"super + ctrl + {h,j,k,l}" = "bspc node -p {west,south,north,east}";
|
|
|
|
"super + ctrl + space" = "bspc node -p cancel";
|
|
|
|
"super + ctrl + shift + space" = "bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel";
|
|
|
|
|
2023-07-03 14:26:14 +01:00
|
|
|
# Screenshot
|
2023-04-05 09:48:05 +01:00
|
|
|
"Print" = "flameshot gui";
|
|
|
|
|
|
|
|
# Shortcuts
|
2023-07-02 16:50:25 +01:00
|
|
|
"super + e" = "thunar";
|
2023-07-03 14:26:14 +01:00
|
|
|
"super + p" = "powermenu";
|
|
|
|
"super + F1" = "xfce4-screensaver-command --lock";
|
2023-04-05 09:48:05 +01:00
|
|
|
|
|
|
|
# Volume control keys
|
2023-04-04 14:20:49 +01:00
|
|
|
"XF86AudioMute" = "pamixer -t";
|
|
|
|
"XF86AudioRaiseVolume" = "pamixer -i 2";
|
|
|
|
"XF86AudioLowerVolume" = "pamixer -d 2";
|
|
|
|
"XF86MonBrightnessUp" = "xbacklight +10";
|
|
|
|
"XF86MonBrightnessDown" = "xbacklight -10";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|