Display charging status in Windows (#1575)

master
Rashil Gandhi 6 years ago committed by GitHub
parent 075eb43dd7
commit c511bcbcef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      neofetch

@ -3686,6 +3686,9 @@ get_battery() {
battery="$(wmic Path Win32_Battery get EstimatedChargeRemaining)"
battery="${battery/EstimatedChargeRemaining}"
battery="$(trim "$battery")%"
state="$(wmic /NameSpace:'\\root\WMI' Path BatteryStatus get Charging)"
state="${state/Charging}"
[[ "$state" == *TRUE* ]] && battery_state="charging"
;;
"Haiku")

Loading…
Cancel
Save