From 6dd9899a03f0c7e81b18420a8b22110a8a1f44b8 Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Sun, 8 Nov 2020 10:58:32 +0100 Subject: [PATCH] only quit read of afflickted bad battery, not all --- .local/bin/statusbar/battery | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.local/bin/statusbar/battery b/.local/bin/statusbar/battery index 96fcf30..b3c7731 100755 --- a/.local/bin/statusbar/battery +++ b/.local/bin/statusbar/battery @@ -17,8 +17,8 @@ for battery in /sys/class/power_supply/BAT? do # Get its remaining capacity and charge status. capacity=$(cat "$battery"/capacity 2>/dev/null) - [ "$capacity" -gt 100 ] && exit #do not print misreads - [ -z "$capacity" ] && exit #if battery fails during reading, quit + [ "$capacity" -gt 100 ] && continue #do not print misreads + [ -z "$capacity" ] && continue #if battery fails during reading, quit status=$(sed "s/Discharging/🔋/;s/Not charging/🛑/;s/Charging/🔌/;s/Unknown/🔋/;s/Full/⚡/" "$battery"/status) # If it is discharging and 25% or less, we will add a ❗ as a warning.