summary refs log tree commit diff stats
path: root/user/modules/sxhkd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'user/modules/sxhkd.nix')
-rw-r--r--user/modules/sxhkd.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/user/modules/sxhkd.nix b/user/modules/sxhkd.nix
deleted file mode 100644
index 7160ec08..00000000
--- a/user/modules/sxhkd.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ config, pkgs, ... }:
-
-{
-  xdg.configFile."sxhkd/sxhkdrc".text = ''
-    XF86AudioMute
-      pamixer --toggle-mute
-
-    XF86Audio{Lower,Raise}Volume
-      pamixer --{decrease,increase} 1
-
-    @XF86AudioMicMute
-      pamixer --source 2 --toggle-mute
-
-    XF86MonBrightness{Down,Up}
-      light -{U,A} 2%
-
-    XF86Display
-      disper -C
-
-    XF86AudioPlay
-      cmus-remote --pause
-
-    XF86Audio{Prev,Next}
-      cmus-remote --{prev,next}
-
-    XF86Tools
-      networkmanager_dmenu
-  '';
-}