summaryrefslogtreecommitdiffstats
path: root/.scripts/statusbar/battery
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-05-18 00:07:32 -0400
committerLuke Smith <luke@lukesmith.xyz>2019-05-18 00:07:32 -0400
commit54920103c2843f5a3620effbccaceaee7f6885c1 (patch)
tree222aa8e75573364cd043382996f4798d94104f65 /.scripts/statusbar/battery
parent18e001db07d7105ab4dc4f4f836ca0d3a516a791 (diff)
downloadeibhear-54920103c2843f5a3620effbccaceaee7f6885c1.tar.gz
eibhear-54920103c2843f5a3620effbccaceaee7f6885c1.tar.zst
eibhear-54920103c2843f5a3620effbccaceaee7f6885c1.zip
scripts moved to ~/.local/bin
Diffstat (limited to '.scripts/statusbar/battery')
-rwxr-xr-x.scripts/statusbar/battery32
1 files changed, 0 insertions, 32 deletions
diff --git a/.scripts/statusbar/battery b/.scripts/statusbar/battery
deleted file mode 100755
index 25c9269..0000000
--- a/.scripts/statusbar/battery
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/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
-🛑: 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="#00ff00"
-elif [ "$capacity" -ge 50 ]; then
- color="#ffffff"
-elif [ "$capacity" -ge 25 ]; then
- color="#ffff00"
-else
- color="#ff0000"
- warn="❗"
-fi
-
-[ -z $warn ] && warn=" "
-
-[ "$status" = "Charging" ] && color="#ffffff"
-
-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/$/%/')"