Notify when battery is low
This commit is contained in:
parent
6e050aaf10
commit
c90ac8fe4a
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
icon=""
|
||||
echo "${icon} $(upower -d | grep 'percentage' | awk '{print $2}' | head -n 1) ($(upower -d | grep 'time to empty' | awk -F: '{print $2}' | awk '{print $1,$2}' | head -n 1))"
|
||||
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 [ "$(echo "$percent" | awk -F% '{print $1}')" -lt 5 ]; then
|
||||
notify-send "CHARGE YOUR BATTERY"
|
||||
fi
|
||||
|
||||
echo "${icon} ${percent} (${remaining})"
|
||||
|
|
Loading…
Add table
Reference in a new issue