fix battery segment on macOS

issue #89
pull/93/head
romkatv 5 years ago
parent 7678930639
commit 95b25e94e1

@ -426,7 +426,7 @@ prompt_battery() {
case $OS in case $OS in
OSX) OSX)
(( $+commands[pmset] )) || return (( $+commands[pmset] )) || return
local raw_data=${${(f)$(command pmset -g batt 2>/dev/null)}[2]} local raw_data=${${(f)"$(command pmset -g batt 2>/dev/null)"}[2]}
[[ $raw_data == *InternalBattery* ]] || return [[ $raw_data == *InternalBattery* ]] || return
remain=${${(s: :)${${(s:; :)raw_data}[3]}}[1]} remain=${${(s: :)${${(s:; :)raw_data}[3]}}[1]}
[[ $remain == *no* ]] && remain="..." [[ $remain == *no* ]] && remain="..."

Loading…
Cancel
Save