revise mac battery error when mac default date use linux's

This commit is contained in:
ruifeng.shan 2016-06-17 18:08:39 +08:00 committed by Ben Hilburn
parent 20b4d2b43e
commit d7c449be34

View file

@ -360,7 +360,7 @@ prompt_battery() {
local time_remaining=$(echo $raw_data | grep TimeRemaining | awk '{ print $5 }')
if [[ -n $time_remaining ]]; then
# this value is set to a very high number when the system is calculating
[[ $time_remaining -gt 10000 ]] && local tstring="..." || local tstring=${(f)$(date -u -r $(($time_remaining * 60)) +%k:%M)}
[[ $time_remaining -gt 10000 ]] && local tstring="..." || local tstring=${(f)$(/bin/date -u -r $(($time_remaining * 60)) +%k:%M)}
fi
# Get charge values
@ -1088,3 +1088,4 @@ powerlevel9k_init() {
}
powerlevel9k_init "$@"