diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2018-12-16 16:50:42 -0500 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2018-12-16 16:50:42 -0500 |
| commit | 865cfdb0293f85c28d1ee54d76a11cc798bb7440 (patch) | |
| tree | 4cda4fab408152fb84c9891eb9feb744ac7ae27c /.scripts/statusbar/battery | |
| parent | eb7ad7220af78d10be832a25ede1693669cd69c0 (diff) | |
| download | eibhear-865cfdb0293f85c28d1ee54d76a11cc798bb7440.tar.gz eibhear-865cfdb0293f85c28d1ee54d76a11cc798bb7440.tar.zst eibhear-865cfdb0293f85c28d1ee54d76a11cc798bb7440.zip | |
Great Renaming, i3blocks officially changed
Diffstat (limited to '.scripts/statusbar/battery')
| -rwxr-xr-x | .scripts/statusbar/battery | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.scripts/statusbar/battery b/.scripts/statusbar/battery new file mode 100755 index 0000000..b2634e6 --- /dev/null +++ b/.scripts/statusbar/battery @@ -0,0 +1,35 @@ +#!/bin/sh +# Give a battery name (e.g. BAT0) as an argument. + +# get xresources colors +for x in "$(xrdb -query | 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 +♻: 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/,//g;s/Discharging/🔋/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/')" |
