aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2019-11-14 09:55:31 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2019-11-14 09:55:31 +0100
commit4a5e258cbbeb107f8b3d460d434ec3239fef5b1b (patch)
treeb33d2245d69a1f800e86cba0bb1d51233e1be9b9
parentTypo corrected (diff)
downloadlowbat-gnu-4a5e258cbbeb107f8b3d460d434ec3239fef5b1b.tar.gz
lowbat-gnu-4a5e258cbbeb107f8b3d460d434ec3239fef5b1b.tar.bz2
lowbat-gnu-4a5e258cbbeb107f8b3d460d434ec3239fef5b1b.tar.xz
lowbat-gnu-4a5e258cbbeb107f8b3d460d434ec3239fef5b1b.tar.zst
lowbat-gnu-4a5e258cbbeb107f8b3d460d434ec3239fef5b1b.zip
HUGE performance bug fixed
-rwxr-xr-xbin/lowbat8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/lowbat b/bin/lowbat
index 8c274da..55e61fd 100755
--- a/bin/lowbat
+++ b/bin/lowbat
@@ -8,8 +8,8 @@ notify() {
while [ 1 ]; do
acstat=$(acpi | awk '{print $3}' | rev | cut -c 2- | rev)
batlvl=$(acpi | awk '{print $4}' | rev | cut -c 3- | rev)
- while [ "$acstat" = "Discharging" ]; do
- if [ $batlvl -lt 15 ]; then
+ if [ $batlvl -lt 15 ]; then
+ while [ "$acstat" = "Discharging" ]; do
$(notify)
sleep 20
acstat=$(acpi | awk '{print $3}' | rev | cut -c 2- | rev)
@@ -17,7 +17,7 @@ while [ 1 ]; do
if [ "$acstat" = "Charging" ]; then
break
fi
- fi
- done
+ done
+ fi
sleep 240
done