#!/bin/sh # Give a battery name (e.g. BAT0) as an argument. case $BLOCK_BUTTON in 3) pgrep -x dunst >/dev/null && notify-send "🔋 Battery module: 🔋: discharging ♻: stagnant charge 🔌: charging ⚡: charged - 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 color="#00FF00" elif [ "$capacity" -ge 60 ]; then color="#FFFFFF" elif [ "$capacity" -ge 40 ]; then color="#FFF600" elif [ "$capacity" -ge 20 ]; then color="#FFAE00" else color="#FF0000" fi [ "$status" = "Charging" ] && color="#FFF" printf "%s %s" "$color" "$(echo "$status" | sed -e "s/,//g;s/Discharging/🔋/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$(echo "$capacity" | sed -e 's/$/%/')"