aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArchie Hilton (thytom) <archie.hilton1@gmail.com>2019-10-26 15:45:40 +0100
committerArchie Hilton (thytom) <archie.hilton1@gmail.com>2019-10-26 15:45:40 +0100
commitf1affabae0891f0746cc68d6dafee33d5ffaf1ce (patch)
treeeff35318880283e00ca018fb6dab05c30e671087
parentf2c4077fecc3f3da59b90b5ce5dfe5b8da196678 (diff)
Changed battery icon spacing
Spacing is only inserted if charging or warning icon shows.
-rwxr-xr-xmodules/battery6
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