Fix always charging bug
This commit is contained in:
parent
eb7eff298d
commit
6dbdaa4a63
1 changed files with 5 additions and 1 deletions
6
neofetch
6
neofetch
|
@ -1709,7 +1709,11 @@ get_battery() {
|
||||||
|
|
||||||
"Mac OS X")
|
"Mac OS X")
|
||||||
battery="$(pmset -g batt | grep -o '[0-9]*%')"
|
battery="$(pmset -g batt | grep -o '[0-9]*%')"
|
||||||
battery_state="$(pmset -g batt | awk 'NR==2 {print $3}')"
|
state="$(pmset -g batt | awk '/;/ {print $4}')"
|
||||||
|
if [ "$state" == "charging;" ];
|
||||||
|
then
|
||||||
|
battery_state="charging"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Windows")
|
"Windows")
|
||||||
|
|
Loading…
Reference in a new issue