diff options
Diffstat (limited to 'other/acpid')
-rw-r--r-- | other/acpid/events/jack | 3 | ||||
-rwxr-xr-x | other/acpid/jack.sh | 17 |
2 files changed, 0 insertions, 20 deletions
diff --git a/other/acpid/events/jack b/other/acpid/events/jack deleted file mode 100644 index 338957c..0000000 --- a/other/acpid/events/jack +++ /dev/null @@ -1,3 +0,0 @@ -# Pass all events to our one handler script -event=jack/* -action=/etc/acpi/jack.sh %e diff --git a/other/acpid/jack.sh b/other/acpid/jack.sh deleted file mode 100755 index e71d17d..0000000 --- a/other/acpid/jack.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/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: |