Unmute fix

Signed-off-by: Maarten van Gompel <proycon@anaproy.nl>
This commit is contained in:
Dmytro 2020-08-17 11:01:11 +02:00 committed by Maarten van Gompel
parent 86469c9b60
commit 6aaca4b161

View file

@ -24,11 +24,12 @@ setvol() {
notify notify
} }
mute() { mute() {
amixer set "$(sxmo_audiocurrentdevice.sh)" mute echo "$(sxmo_audiocurrentdevice.sh)" > /tmp/muted-audio.dev
amixer set "$(cat /tmp/muted-audio.dev)" mute
notify notify
} }
unmute() { unmute() {
amixer set "$(sxmo_audiocurrentdevice.sh)" unmute amixer set "$(cat /tmp/muted-audio.dev)" unmute
notify notify
} }