mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 09:58:47 -07:00
fix(battery): use pmset
for battery percentage in macOS (#9364)
Returns the battery charge consistent with the system battery manager
This commit is contained in:
parent
eef04c62c2
commit
5d8e1f8267
@ -18,10 +18,7 @@ if [[ "$OSTYPE" = darwin* ]]; then
|
||||
}
|
||||
|
||||
function battery_pct() {
|
||||
local battery_status="$(ioreg -rc AppleSmartBattery)"
|
||||
local -i capacity=$(sed -n -e '/MaxCapacity/s/^.*"MaxCapacity"\ =\ //p' <<< $battery_status)
|
||||
local -i current=$(sed -n -e '/CurrentCapacity/s/^.*"CurrentCapacity"\ =\ //p' <<< $battery_status)
|
||||
echo $(( current * 100 / capacity ))
|
||||
pmset -g batt | grep -Eo "\d+%" | cut -d% -f1
|
||||
}
|
||||
|
||||
function battery_pct_remaining() {
|
||||
|
Loading…
Reference in New Issue
Block a user