Browse Source

battery: fix Full battery bug on Linux; force 1-char-width on charging symbol

Marc Cornellà 4 years ago
parent
commit
3da469be5c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugins/battery/battery.plugin.zsh

+ 2 - 2
plugins/battery/battery.plugin.zsh

@@ -118,7 +118,7 @@ elif [[ "$OSTYPE" = linux*  ]]; then
 
   function battery_pct() {
     if (( $+commands[acpi] )); then
-      acpi 2>/dev/null | command grep -v "rate information unavailable" | command grep -E '^Battery.*(Disc|C)harging' | cut -f2 -d ',' | tr -cd '[:digit:]'
+      acpi 2>/dev/null | command grep -v "rate information unavailable" | command grep -E '^Battery.*(Full|(Disc|C)harging)' | cut -f2 -d ',' | tr -cd '[:digit:]'
     fi
   }
 
@@ -175,7 +175,7 @@ function battery_level_gauge() {
   local filled_symbol=${BATTERY_GAUGE_FILLED_SYMBOL:-'▶'}
   local empty_symbol=${BATTERY_GAUGE_EMPTY_SYMBOL:-'▷'}
   local charging_color=${BATTERY_CHARGING_COLOR:-$color_yellow}
-  local charging_symbol=${BATTERY_CHARGING_SYMBOL:-'⚡'}
+  local charging_symbol=${BATTERY_CHARGING_SYMBOL:-'%%{%%G%%}'}
 
   local battery_remaining_percentage=$(battery_pct)
   local filled empty gauge_color