mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
Fix percentage text inside battery icon.
This commit is contained in:
parent
7eba91d038
commit
8df3820882
1 changed files with 7 additions and 7 deletions
|
@ -2,12 +2,12 @@
|
|||
|
||||
# Prints out battery percentage
|
||||
|
||||
CHARGING_ICON=''
|
||||
WARNING_ICON=''
|
||||
BATTERY_FULL_ICON=''
|
||||
BATTERY_2_ICON=''
|
||||
BATTERY_3_ICON=''
|
||||
BATTERY_4_ICON=''
|
||||
CHARGING_ICON=' '
|
||||
WARNING_ICON=' '
|
||||
BATTERY_FULL_ICON=' '
|
||||
BATTERY_2_ICON=' '
|
||||
BATTERY_3_ICON=' '
|
||||
BATTERY_4_ICON=' '
|
||||
|
||||
FULL_AT=98
|
||||
|
||||
|
@ -37,7 +37,7 @@ get_battery()
|
|||
BAT_ICON=$BATTERY_2_ICON
|
||||
fi
|
||||
fi
|
||||
echo "$ICON $BAT_ICON $capacity%"
|
||||
echo "$ICON $BAT_ICON $capacity%"
|
||||
}
|
||||
|
||||
get_battery
|
||||
|
|
Loading…
Reference in a new issue