diff options
Diffstat (limited to 'doc/examples/audio-volume-control/amixer')
-rwxr-xr-x | doc/examples/audio-volume-control/amixer | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/examples/audio-volume-control/amixer b/doc/examples/audio-volume-control/amixer new file mode 100755 index 0000000..c46d4e5 --- /dev/null +++ b/doc/examples/audio-volume-control/amixer @@ -0,0 +1,8 @@ +#!/bin/sh +/usr/bin/amixer "$@" +for arg in "$@"; do + if [ "${arg}" = "set" ] || [ "${arg}" = "sset" ] || [ "${arg}" = "cset" ]; then + exec bus broadcast "/tmp/example-bus" '0 volume-changed *' + fi +done + |