36 lines
1 KiB
Bash
Executable file
36 lines
1 KiB
Bash
Executable file
#!/bin/sh
|
|
# Give a battery name (e.g. BAT0) as an argument.
|
|
|
|
# get xresources colors
|
|
for x in "$(xrdb -query | grep color | sed "s/.*\./export /g;s/:\s*/=\"/g;s/$/\"/g")"; do eval "$x"; done
|
|
|
|
case $BLOCK_BUTTON in
|
|
3) pgrep -x dunst >/dev/null && notify-send "<b>🔋 Battery module:</b>
|
|
🔋: discharging
|
|
🛑: not charging
|
|
♻: stagnant charge
|
|
🔌: charging
|
|
⚡: charged
|
|
❗: battery very low!
|
|
- Text color reflects charge left" ;;
|
|
esac
|
|
|
|
capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit
|
|
status=$(cat /sys/class/power_supply/"$1"/status)
|
|
|
|
if [ "$capacity" -ge 75 ]; then
|
|
color="$color10"
|
|
elif [ "$capacity" -ge 50 ]; then
|
|
color="$color15"
|
|
elif [ "$capacity" -ge 25 ]; then
|
|
color="$color11"
|
|
else
|
|
color="$color9"
|
|
warn="❗"
|
|
fi
|
|
|
|
[ -z $warn ] && warn=" "
|
|
|
|
[ "$status" = "Charging" ] && color="$color15"
|
|
|
|
printf "<span color='%s'>%s%s%s</span>" "$color" "$(echo "$status" | sed -e "s/,//;s/Discharging/🔋/;s/Not Charging/🛑/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/')"
|