diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-01-17 19:14:34 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-01-17 19:14:34 +0300 |
commit | 5eee5b44924bf9079a67d5bc7612bfad56ddeed3 (patch) | |
tree | 0408697aba64aa3f012f134bdc35316841a4b404 /dotfiles/.local/bin/i3barbattery | |
parent | 8f672e8a119e9efd23272f7cb0ff4550872f9d47 (diff) | |
download | swayrice-5eee5b44924bf9079a67d5bc7612bfad56ddeed3.tar.gz swayrice-5eee5b44924bf9079a67d5bc7612bfad56ddeed3.zip |
config restructuring and cleanup
Diffstat (limited to 'dotfiles/.local/bin/i3barbattery')
-rwxr-xr-x | dotfiles/.local/bin/i3barbattery | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dotfiles/.local/bin/i3barbattery b/dotfiles/.local/bin/i3barbattery new file mode 100755 index 0000000..edc89c3 --- /dev/null +++ b/dotfiles/.local/bin/i3barbattery @@ -0,0 +1,34 @@ +#!/bin/sh +# Taken from Luke Smith's rice +# Takes battery name as an argument (e.g. BAT0) + +case $BLOCK_BUTTON in + 3) 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="#689d6a" +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/$/%/')" + |