aboutsummaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorAkshay <[email protected]>2024-07-23 16:03:05 +0100
committerAkshay <[email protected]>2024-07-23 16:03:05 +0100
commit3099f8b97a5be7b35b2eb03506adf1167270878e (patch)
tree04676fd7ce30549c48e9787de0d9d9478dbaf569 /services
parent1ebd3b990bdfb462a98a1432ffae7f4e739eeb44 (diff)
stuff
Diffstat (limited to 'services')
-rw-r--r--services/sxhkd.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/services/sxhkd.nix b/services/sxhkd.nix
index d8678af..b1fc55c 100644
--- a/services/sxhkd.nix
+++ b/services/sxhkd.nix
@@ -19,11 +19,18 @@ in
19{ 19{
20 services.sxhkd = { 20 services.sxhkd = {
21 enable = true; 21 enable = true;
22 keybindings = { 22 keybindings =
23 let
24 vol_up ="${volume}/bin/volume sset Master 2%+";
25 vol_down ="${volume}/bin/volume sset Master 2%-";
26 in
27 {
23 "super + slash" = "${pkgs.light}/bin/light -A 2"; 28 "super + slash" = "${pkgs.light}/bin/light -A 2";
24 "super + shift + slash" = "${pkgs.light}/bin/light -U 2"; 29 "super + shift + slash" = "${pkgs.light}/bin/light -U 2";
25 "super + semicolon" = "${volume}/bin/volume sset Master 2%+"; 30 "super + semicolon" = vol_up;
26 "super + shift + semicolon" = "${volume}/bin/volume sset Master 2%-"; 31 "super + shift + semicolon" = vol_down;
32 "XF86AudioRaiseVolume" = vol_up;
33 "XF86AudioLowerVolume" = vol_down;
27 "super + ctrl + space" = "${pkgs.dunst}/bin/dunstctl close"; 34 "super + ctrl + space" = "${pkgs.dunst}/bin/dunstctl close";
28 "super + shift + space" = "${pkgs.dunst}/bin/dunstctl history-pop"; 35 "super + shift + space" = "${pkgs.dunst}/bin/dunstctl history-pop";
29 "super + ctrl + shift + space" = "${pkgs.dunst}/bin/dunstctl close-all"; 36 "super + ctrl + shift + space" = "${pkgs.dunst}/bin/dunstctl close-all";