projects
/
~bandali
/
configs
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
[rc/zsh] migrate my zsh setup to rc.org
[~bandali/configs]
/
other
/
acpid
/
jack.sh
Commit
Line
Data
50093113
AB
1
#!/bin/bash
2
# acpi script that takes an entry for headphone actions
3
4
case "$1" in
5
jack/headphone)
6
case "$3" in
7
plug)
8
echo "⮜" > /tmp/spkicon
9
;;
10
unplug)
11
echo "⮟" > /tmp/spkicon
12
;;
13
esac
14
;;
15
esac
16
17
# vim:set ts=4 sw=4 ft=sh et: