2020-02-08 23:43:37 +00:00
|
|
|
#!/bin/sh
|
2020-03-27 13:56:04 +00:00
|
|
|
|
|
|
|
# Prints all batteries, their percentage remaining and an emoji corresponding
|
|
|
|
# to charge status (🔌 for pluged up, 🔋 for discharging on battery, etc.).
|
2019-11-23 21:23:24 +00:00
|
|
|
|
|
|
|
case $BLOCK_BUTTON in
|
|
|
|
3) pgrep -x dunst >/dev/null && notify-send "🔋 Battery module" "🔋: discharging
|
|
|
|
🛑: not charging
|
|
|
|
♻: stagnant charge
|
|
|
|
🔌: charging
|
|
|
|
⚡: charged
|
2020-03-27 13:56:04 +00:00
|
|
|
❗: battery very low!" ;;
|
2019-11-23 21:23:24 +00:00
|
|
|
esac
|
|
|
|
|
2020-03-27 13:56:04 +00:00
|
|
|
# Loop through all attached batteries.
|
2020-02-28 21:34:46 +00:00
|
|
|
for battery in /sys/class/power_supply/BAT?
|
|
|
|
do
|
2020-03-27 13:56:04 +00:00
|
|
|
# Get its remaining capacity and charge status.
|
|
|
|
capacity=$(cat "$battery"/capacity) || exit
|
|
|
|
status=$(cat "$battery"/status)
|
2019-11-23 21:23:24 +00:00
|
|
|
|
2020-03-27 13:56:04 +00:00
|
|
|
# If it is discharging and 20% or less, we will add a ❗ as a warning.
|
|
|
|
[ "$status" = "Discharging" ] && echo "$capacity" | grep -q "^[12][0-9]$" && warn="❗"
|
2019-11-23 21:23:24 +00:00
|
|
|
|
2020-03-27 13:56:04 +00:00
|
|
|
# Print the battery status (replaced by a cooresponding emoji with
|
|
|
|
# sed), the percentage left and the warning if there is one.
|
|
|
|
printf "%s%s%s\n" "$(echo "$status" | sed "s/,//;s/Discharging/🔋/;s/Not charging/🛑/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/')"
|
|
|
|
unset warn
|
2020-02-28 21:34:46 +00:00
|
|
|
done
|
|
|
|
|