From f1affabae0891f0746cc68d6dafee33d5ffaf1ce Mon Sep 17 00:00:00 2001 From: "Archie Hilton (thytom)" Date: Sat, 26 Oct 2019 15:45:40 +0100 Subject: [PATCH] Changed battery icon spacing Spacing is only inserted if charging or warning icon shows. --- modules/battery | 6 +++--- 1 file 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