voidrice/.scripts/statusbar/i3battery

35 lines
938 B
Text
Raw Normal View History

#!/bin/sh
# Give a battery name (e.g. BAT0) as an argument.
2018-11-12 02:32:51 +00:00
case $BLOCK_BUTTON in
3) pgrep -x dunst >/dev/null && notify-send "<b>🔋 Battery module:</b>
🔋: discharging
♻: stagnant charge
🔌: charging
⚡: charged
2018-11-27 18:56:32 +00:00
❗: battery very low!
2018-11-12 02:32:51 +00:00
- 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 80 ]; then
2018-12-03 01:33:38 +00:00
color="#b8bb26"
elif [ "$capacity" -ge 60 ]; then
2018-12-03 01:33:38 +00:00
color="#ebdbb2"
elif [ "$capacity" -ge 40 ]; then
2018-12-03 01:33:38 +00:00
color="#fabd2f"
elif [ "$capacity" -ge 20 ]; then
2018-12-03 01:33:38 +00:00
color="#fe8019"
2018-07-16 23:16:47 +00:00
else
2018-12-03 01:33:38 +00:00
color="#fb4934"
2018-11-27 18:56:32 +00:00
warn="❗"
2018-07-16 23:16:47 +00:00
fi
2018-11-27 18:56:32 +00:00
[ -z $warn ] && warn=" "
[ "$status" = "Charging" ] && color="#FFF"
2018-11-27 18:56:32 +00:00
printf "<span color='%s'>%s%s%s</span>" "$color" "$(echo "$status" | sed -e "s/,//g;s/Discharging/🔋/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/')"