From dcd17ec55a22c68dce400b70f14e2930f93b324a Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Sat, 7 Nov 2015 16:41:14 -0700 Subject: [PATCH] changed mid battery upper limit to 35% --- dwmstatus.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dwmstatus.sh b/dwmstatus.sh index 18c4379..ed850fc 100755 --- a/dwmstatus.sh +++ b/dwmstatus.sh @@ -59,9 +59,9 @@ bat(){ then #below 25% echo -ne "${color_urgent}${glyph_pow} ${charge}%${color_normal}" - elif [[ $on1 -eq "0" && $charge -lt "50" ]] + elif [[ $on1 -eq "0" && $charge -lt "35" ]] then - #between 25% and 50% + #between 25% and 35% echo -ne "${color_important}${glyph_pow} ${charge}%${color_normal}" elif [ $on1 -eq "0" ] then