mirror of https://github.com/tiyn/dotfiles
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.
10 lines
516 B
10 lines
516 B
#!/usr/bin/env sh
|
|
|
|
capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit
|
|
status=$(cat /sys/class/power_supply/"$1"/status)
|
|
|
|
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%"
|