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.
11 lines
514 B
11 lines
514 B
#!/usr/bin/env sh
|
|
|
|
capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit
|
|
status=$(cat /sys/class/power_supply/"$1"/status)
|
|
|
|
[ -z $warn ] && warn=" "
|
|
|
|
[ "$status" = "Charging" ]
|
|
|
|
printf "%s%s" "$(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")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/' ) "
|