Rename TIME to THRESHOLD, it's a percentage

This commit is contained in:
flyingscorpio@clevo 2022-02-15 18:18:29 +01:00
parent f7f0ecb9c1
commit a5f6b8fb3e
2 changed files with 2 additions and 2 deletions

View file

@ -79,7 +79,7 @@ interval=900
interval=5
[battery]
TIME=10
THRESHOLD=10
interval=5
[calendar]

View file

@ -4,7 +4,7 @@ icon=""
percent="$(upower -d | grep 'percentage' | awk '{print $2}' | head -n 1)"
remaining="$(upower -d | grep 'time to empty' | awk -F: '{print $2}' | awk '{print $1,$2}' | head -n 1)"
if [ -n "$remaining" ] && [ "$(echo "$percent" | awk -F% '{print $1}')" -lt "$TIME" ]; then
if [ -n "$remaining" ] && [ "$(echo "$percent" | awk -F% '{print $1}')" -lt "$THRESHOLD" ]; then
notify-send "CHARGE BATTERY"
for file in /dev/pts/*; do
if [ "$(ls -l "$file" | awk '{print $5}')" = '136,' ]; then