You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
582 B

#!/usr/bin/env sh
# capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit
# status=$(cat /sys/class/power_supply/"$1"/status)
capacity=50
status="Discharging"
[ "$status" = "Charging" ]
icon=$(echo "$status" | sed -e "s/,//;s/Discharging/^b#282828^^c#dfdfdf^  ^d^/;s/Not charging/^b#282828^^c#dfdfdf^  ^d^/;s/Charging/^b#282828^^c#dfdfdf^  ^d^/;s/Unknown/^b#282828^^c#dfdfdf^  ^d^/;s/Full/^b#282828^^c#dfdfdf^ ⚡ ^d^/;s/ 0*/ /g;s/ :/ /g")
capacity=$(echo "$capacity" | sed -e 's/$//' )
capacity=$(printf %3s $capacity | tr ' ' ' ')
echo "$icon $capacity%"