58 lines
2.9 KiB
Nix
58 lines
2.9 KiB
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [ ./thunar.nix ];
|
|
home.packages = with pkgs; [
|
|
unstable.kitty
|
|
lockscreen
|
|
pamixer
|
|
playerctl
|
|
terminator
|
|
update-background
|
|
xorg.xbacklight
|
|
];
|
|
services.sxhkd =
|
|
let
|
|
primaryTerminal = "kitty";
|
|
secondaryTerminal = "terminator";
|
|
fileManager = "thunar";
|
|
in
|
|
{
|
|
enable = true;
|
|
keybindings = {
|
|
"super + b" = "update-background";
|
|
"super + alt + {h,j,k,l}" = "bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}";
|
|
"super + alt + p" = "autorandr -c";
|
|
"super + alt + {q,r}" = "bspc {quit,wm -r}";
|
|
"super + alt + shift + {h,j,k,l}" = "bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}";
|
|
"super + alt + m" = "lockscreen";
|
|
"super + bracket{left,right}" = "bspc desktop -f {prev,next}.local";
|
|
"super + ctrl + {1-9}" = "bspc node -o 0.{1-9}";
|
|
"super + ctrl + {h,j,k,l}" = "bspc node -p {west,south,north,east}";
|
|
"super + ctrl + {m,x,y,z}" = "bspc node -g {marked,locked,sticky,private}";
|
|
"super + ctrl + shift + space" = "bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel";
|
|
"super + ctrl + space" = "bspc node -p cancel";
|
|
"super + e" = fileManager;
|
|
"super + Escape" = "pkill -USR1 -x sxhkd";
|
|
"super + g" = "bspc node -s biggest";
|
|
"super + {grave,Tab}" = "bspc {node,desktop} -f last";
|
|
"super + {Left,Down,Up,Right}" = "bspc node -v {-20 0,0 20,0 -20,20 0}";
|
|
"super + m" = "bspc desktop -l next";
|
|
"super + {o,i}" = "bspc wm -h off;bspc node {older,newer} -f;bspc wm -h on";
|
|
"super + {p,b,comma,period}" = "bspc node -f @{parent,brother,first,second}";
|
|
"super + {_,shift + } Return" = "{${primaryTerminal} , ${secondaryTerminal}}";
|
|
"super + {_,shift + }{1-9,0}" = "bspc {desktop -f,node -d} 'focused:^{1-9,10}'";
|
|
"super + {_,shift + }c" = "bspc node -f {next,prev}.local";
|
|
"super + {h,j,k,l}" = "dir={west,south,north,east}; bspc node -f $dir || bspc monitor -f $dir";
|
|
"super + shift + {h,j,k,l}" = ''dir={west,south,north,east}; bspc node -s "$dir.local" --follow || bspc node -m "$dir" --follow'';
|
|
"super + {_,shift + }w" = "bspc node -{c,k}";
|
|
"super + {_,shift + }@space " = "rofi -show {drun,run}";
|
|
"alt + Tab" = "rofi -show window";
|
|
"super + {t,shift + t,s,f}" = "bspc node -t {tiled,pseudo_tiled,floating,fullscreen}";
|
|
"super + y" = "bspc node newest.marked.local -n newest.!automatic.local";
|
|
"{XF86AudioLowerVolume,XF86AudioMute,XF86AudioRaiseVolume}" = "pamixer {-d 2 -u,-t,-i 2 -u} && dunstify -r 1 Volume `pamixer --get-volume-human`";
|
|
"XF86Audio{Next,Play,Prev}" = "playerctl {next,play-pause,previous}";
|
|
"super + alt + {Right,Down,Left}" = "playerctl {next,play-pause,previous}";
|
|
"XF86MonBrightness{Up,Down}" = "xbacklight {+,-}10%";
|
|
};
|
|
};
|
|
}
|