summaryrefslogtreecommitdiffstats
path: root/other/acpid/jack.sh
diff options
context:
space:
mode:
Diffstat (limited to 'other/acpid/jack.sh')
-rwxr-xr-xother/acpid/jack.sh17
1 files changed, 0 insertions, 17 deletions
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: