From 976bd438f1979a96feb664545d55ec55966a2217 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Mon, 22 Oct 2018 12:07:25 +0200 Subject: [PATCH] Fix mediacontrol.sh bug --- .scripts/mediacontrol.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.scripts/mediacontrol.sh b/.scripts/mediacontrol.sh index e77a121..b33f7f1 100755 --- a/.scripts/mediacontrol.sh +++ b/.scripts/mediacontrol.sh @@ -34,7 +34,7 @@ ${B}COMMANDS${N} ${B}m*, mute${N} - ${B}u*, unmute${N} + ${B}n*, notmute${N} ${B}getv*, getvolume${N} @@ -48,7 +48,7 @@ case "$1" in s*) pulsemixer --set-volume "$NUM" ; $RELOAD ;; t*) pulsemixer --toggle-mute ; $RELOAD ;; m*) pulsemixer --mute ; $RELOAD ;; - u*) pulsemixer --unmute ; $RELOAD ;; + n*) pulsemixer --unmute ; $RELOAD ;; getv*) pulsemixer --get-volume | awk '{print $1}' ;; getm*) pulsemixer --get-mute ;; *) help ;;