From 00063659905bcd3df8712d3340d1193a9f08cfd2 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Sat, 3 Sep 2016 21:21:31 -0600 Subject: [PATCH] reduced volume notification duration --- volumeset.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/volumeset.sh b/volumeset.sh index 9048b53..cad8d4f 100755 --- a/volumeset.sh +++ b/volumeset.sh @@ -23,7 +23,7 @@ muted=`amixer get Master | grep "Front Left:" | awk '{print $6}'` vol=`amixer get Master | grep "Front Left:" | awk '{print $5}' | tr -d '[]'` if [[ $muted == "[off]" ]]; then - twmnc -t 'volume' -c 'muted' -d 1000 + twmnc -t 'volume' -c 'muted' -d 100 else - twmnc -t 'volume' -c "${direction}${vol}" -d 1000 + twmnc -t 'volume' -c "${direction}${vol}" -d 100 fi