add volume notification and changing sound effect

This commit is contained in:
Leonardo Eugênio 2022-08-13 10:08:59 -03:00
parent f7d596a488
commit 9eed8fb9c1
3 changed files with 39 additions and 42 deletions

View file

@ -38,26 +38,26 @@ min() {
}
# Pulse{{{
get_vol_pulse() {
get_vol_system() {
pamixer --get-volume
}
is_muted_pulse() {
is_muted_system() {
pamixer --get-mute >/dev/null
}
change_vol_pulse() {
change_vol_system() {
pamixer "-$1" "$(min 120 $2)"
round_vol
pamixer --set-volume "${newvol}"
if
if
test -n "$VOLUME_CHANGE_SOUND"
then
paplay "$VOLUME_CHANGE_SOUND"
fi
}
toggle_mute_pulse() {
toggle_mute_system() {
pactl set-sink-mute @DEFAULT_SINK@ toggle
}
#}}}
@ -95,7 +95,7 @@ usage() {
exit "$1"
}
TARGET=pulse
TARGET=system
while [ $# -gt 0 ]; do
case $1 in