From cf945753b1b0d82c3575cf4d2fb8da5afb89e2b2 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Sun, 12 Jun 2016 22:34:34 -0600 Subject: [PATCH] removed vol % from statusbar --- dwmstatus.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dwmstatus.sh b/dwmstatus.sh index 778a5ee..710642d 100755 --- a/dwmstatus.sh +++ b/dwmstatus.sh @@ -89,8 +89,7 @@ vol(){ mute=`amixer get Master | grep "Front Left:" | awk '{print $6}'` if [ ${mute} == "[on]" ] then - volume=`amixer get Master | grep "Front Left:" | awk '{print $5}' | tr -d '[]'` - echo -ne "${glyph_vol} ${volume}" + echo -ne "${glyph_vol}" else echo -ne "${glyph_mute}" fi