You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
773 B
41 lines
773 B
#!/usr/bin/env sh |
|
|
|
# include common definitions |
|
# shellcheck source=scripts/core/sxmo_common.sh |
|
. "$(dirname "$0")/sxmo_common.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" |
|
notify |
|
} |
|
mute() { |
|
sxmo_audiocurrentdevice.sh > /tmp/muted-audio.dev |
|
amixer set "$(cat /tmp/muted-audio.dev)" mute |
|
notify |
|
} |
|
unmute() { |
|
amixer set "$(cat /tmp/muted-audio.dev)" unmute |
|
notify |
|
} |
|
|
|
"$@"
|
|
|