{ config , pkgs , theme , ... }: { services.sxhkd = { enable = true; keybindings = { "super + slash" = "${pkgs.light}/bin/light -A 5"; "super + shift + slash" = "${pkgs.light}/bin/light -U 5"; "super + semicolon" = "${pkgs.alsaUtils}/bin/amixer sset Master 2%+"; "super + shift + semicolon" = "${pkgs.alsaUtils}/bin/amixer sset Master 2%-"; "super + space" = "${pkgs.dunst}/bin/dunstctl close"; "super + ctrl + space" = "${pkgs.dunst}/bin/dunstctl close-all"; "super + shift + space" = "${pkgs.dunst}/bin/dunstctl history-pop"; }; }; }