updated spacing for some icons

This commit is contained in:
Solomon Laing 2022-11-09 08:10:07 +10:30
parent 053f34024b
commit 96a95a2d98
2 changed files with 9 additions and 9 deletions

View File

@ -11,34 +11,34 @@ status="$current%"
if [[ "$state" == "discharging" ]]; then if [[ "$state" == "discharging" ]]; then
case $(((current/20)+1)) in case $(((current/20)+1)) in
1) 1)
icon="" icon=" "
;; ;;
2) 2)
icon="" icon=" "
;; ;;
3) 3)
icon="" icon=" "
;; ;;
4) 4)
icon="" icon=" "
;; ;;
5) 5)
icon="" icon=" "
;; ;;
esac esac
fi fi
if [[ "$state" == "not-charging" ]]; then if [[ "$state" == "not-charging" ]]; then
icon="" icon=" "
fi fi
if [[ "$state" == "fully-charged" ]]; then if [[ "$state" == "fully-charged" ]]; then
icon="" icon=" "
status="Full" status="Full"
fi fi
if [[ "$state" == "charging" ]]; then if [[ "$state" == "charging" ]]; then
icon="" icon=" "
fi fi
echo "$icon $status" echo "$icon $status"

View File

@ -22,7 +22,7 @@ cyan=#2aa198
green=#859900 green=#859900
std_color=$magenta std_color=$magenta
wifi_icon="" wifi_icon=" "
color=$std_color; color=$std_color;