From 4e167afa53ccff0a4467a75709a2276c5156f92b Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Fri, 15 Nov 2019 11:38:59 +0100 Subject: shellchecked --- bin/lowbat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/lowbat b/bin/lowbat index 8297032..bccf7d2 100755 --- a/bin/lowbat +++ b/bin/lowbat @@ -8,19 +8,19 @@ if [ ! "$1" = "--silent" ]; then fi fi -notify() { +ntf() { notify-send "Low battery: $batlvl%" "Please plug in computer" -u critical -t 15000 if [ ! "$message" = "--silent" ]; then echo "$message" | espeak fi } -while [ 1 ]; do +while true ; do acstat=$(acpi | awk '{print $3}' | rev | cut -c 2- | rev) batlvl=$(acpi | awk '{print $4}' | rev | cut -c 3- | rev) - if [ $batlvl -lt 15 ]; then + if [ "$batlvl" -lt 115 ]; then while [ "$acstat" = "Discharging" ]; do - $(notify) + ntf sleep 20 acstat=$(acpi | awk '{print $3}' | rev | cut -c 2- | rev) batlvl=$(acpi | awk '{print $4}' | rev | cut -c 3- | rev) -- cgit v1.2.3