diff options
author | Archie Hilton (thytom) <archie.hilton1@gmail.com> | 2019-10-26 15:45:40 +0100 |
---|---|---|
committer | Archie Hilton (thytom) <archie.hilton1@gmail.com> | 2019-10-26 15:45:40 +0100 |
commit | f1affabae0891f0746cc68d6dafee33d5ffaf1ce (patch) | |
tree | eff35318880283e00ca018fb6dab05c30e671087 | |
parent | f2c4077fecc3f3da59b90b5ce5dfe5b8da196678 (diff) |
Changed battery icon spacing
Spacing is only inserted if charging or warning icon shows.
-rwxr-xr-x | modules/battery | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/battery b/modules/battery index b5e25fa..ba61912 100755 --- a/modules/battery +++ b/modules/battery @@ -2,8 +2,8 @@ # Prints out battery percentage -CHARGING_ICON='' -WARNING_ICON='' +CHARGING_ICON=' ' +WARNING_ICON=' ' BATTERY_FULL_ICON='' BATTERY_2_ICON='' BATTERY_3_ICON='' @@ -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 |