Really fix battery usage on Windows
This commit is contained in:
parent
d8f9574be9
commit
ad25e2677f
4
fetch
4
fetch
|
@ -1250,11 +1250,11 @@ getbattery () {
|
|||
;;
|
||||
|
||||
"Windows")
|
||||
battery="$(wmic Path Win32_Battery)"
|
||||
battery="$(wmic Path Win32_Battery get EstimatedChargeRemaining /value)"
|
||||
battery=${battery/EstimatedChargeRemaining'='}
|
||||
battery=${battery//[[:space:]]/ }
|
||||
battery=${battery// }
|
||||
battery+="%"
|
||||
battery+="${battery}%"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
|
Reference in New Issue