diff options
author | Amin Bandali <amin@aminb.org> | 2018-04-29 23:46:44 -0400 |
---|---|---|
committer | Amin Bandali <amin@aminb.org> | 2018-04-29 23:47:18 -0400 |
commit | 96361db56c026b405179c98b1dbd58c8a3f2131d (patch) | |
tree | de487f9e93a15706d973558908ddc6f36b7053d2 /other/acpid | |
parent | b1f6f894370d4488babc172b89b9d59ddea945b4 (diff) | |
download | configs-96361db56c026b405179c98b1dbd58c8a3f2131d.tar.gz configs-96361db56c026b405179c98b1dbd58c8a3f2131d.tar.xz configs-96361db56c026b405179c98b1dbd58c8a3f2131d.zip |
[other] remove some of the out of date stuff
TODO: Makefile rules for setting up my zim-based zsh setup, along with
the zsh plugins I use
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: |