sxmo-utils/scripts/core/sxmo_vol.sh
2020-08-18 20:36:22 -05:00

34 lines
605 B
Bash
Executable file

#!/usr/bin/env sh
notify() {
VOL="$(
amixer get "$(sxmo_audiocurrentdevice.sh)" |
grep -oE '([0-9]+)%' |
tr -d ' %' |
awk '{ s += $1; c++ } END { print s/c }' |
xargs printf %.0f
)"
dunstify -i 0 -u normal -r 998 "$VOL"
sxmo_statusbarupdate.sh
}
up() {
amixer set "$(sxmo_audiocurrentdevice.sh)" 1+
notify
}
down() {
amixer set "$(sxmo_audiocurrentdevice.sh)" 1-
notify
}
setvol() {
amixer set "$(sxmo_audiocurrentdevice.sh)" "$1"
}
mute() {
amixer set "$(sxmo_audiocurrentdevice.sh)" mute
notify
}
unmute() {
amixer set "$(sxmo_audiocurrentdevice.sh)" unmute
notify
}
"$@"