From 0272acd0278289ef6b23f9ae742db2e2c0a2fbd0 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Sun, 9 Nov 2014 19:28:56 -0700 Subject: [PATCH] use words do to ohsnap being too small --- volume.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/volume.sh b/volume.sh index ed0e314..9a83405 100755 --- a/volume.sh +++ b/volume.sh @@ -3,7 +3,7 @@ mute=`amixer get Master | grep "Front Left:" | awk '{print $6}'` if [ $mute == "[on]" ] then vol=`amixer get Master | grep "Front Left:" | awk '{print $5}' | tr -d '[]'` - echo $vol + echo "vol" $vol else - echo "Mute" + echo "mute" fi