15 lines
138 B
Bash
Executable file
15 lines
138 B
Bash
Executable file
#!/usr/bin/env sh
|
|
case "$1" in
|
|
up)
|
|
set -- -i
|
|
;;
|
|
down)
|
|
set -- -d
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
set -- pamixer "$@" 5
|
|
|
|
exec "$@"
|