all repos — dotfiles @ ce1c2f28bb389820ff172845a75148c1fca8e0ab

my *nix dotfiles

nix/services/sxhkd.nix (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
{ config
, pkgs
, theme
, ...
}:

{
  services.sxhkd = {
    enable = true;
    keybindings = {
      "XF86Audio{Lower,Raise}Volume" = "${pkgs.alsaUtils}/bin/amixer sset Master 2%{-,+}";
      "XF86AudioMute" = "${pkgs.alsaUtils}/bin/amixer sset Master toggle";
      "XF86MonBrightness{Down,Up}" = "${pkgs.light}/bin/light -{U,A} 50";
      "super + Escape" = "pkill -USR1 -x sxhkd";
    };
  };
}