1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-12-17 21:30:07 +00:00

Performance improvement by calculating the battery percentage with zsh.

This commit is contained in:
Dominik Ritter 2015-11-23 00:09:37 +01:00
parent 1eadf5ad76
commit 7774294113

View file

@ -238,7 +238,12 @@ prompt_battery() {
local max_capacity=$(ioreg -n AppleSmartBattery | grep MaxCapacity | awk '{ print $5 }')
local current_capacity=$(ioreg -n AppleSmartBattery | grep CurrentCapacity | awk '{ print $5 }')
[[ ! -z $max_capacity && ! -z $current_capacity ]] && local bat_percent=$(ruby -e "puts ($current_capacity.to_f / $max_capacity.to_f * 100).round.to_i")
if [[ -n "$max_capacity" && -n "$current_capacity" ]]; then
typeset -F 2 current_capacity
current_capacity="$current_capacity"+0.00001
typeset -i 10 bat_percent
bat_percent=$(( (current_capacity / max_capacity) * 100 ))
fi
# logic for string output
[[ $charging =~ true && $connected =~ true ]] && local conn="$POWERLEVEL9K_BATTERY_CHARGING" && local remain=" ($tstring)"