use acpid for updating panel speaker/headset icon
[~bandali/configs] / other / acpid / jack.sh
diff --git a/other/acpid/jack.sh b/other/acpid/jack.sh
new file mode 100755 (executable)
index 0000000..e71d17d
--- /dev/null
@@ -0,0 +1,17 @@
+#!/bin/bash
+# acpi script that takes an entry for headphone actions
+
+case "$1" in
+    jack/headphone)
+        case "$3" in
+            plug)
+                echo "⮜" > /tmp/spkicon
+                ;;
+            unplug)
+                echo "⮟" > /tmp/spkicon
+                ;;
+    esac
+    ;;
+esac
+
+# vim:set ts=4 sw=4 ft=sh et: