Added a verbose mode.

pull/22/head
Dominik Ritter 9 years ago
parent 323610cebf
commit 23e2a54067

@ -289,8 +289,14 @@ prompt_battery() {
[[ -n $tstring ]] && local remain=" ($tstring)" [[ -n $tstring ]] && local remain=" ($tstring)"
fi fi
# prepare string
local message="$(print_icon 'BATTERY_ICON')"
if [[ "$POWERLEVEL9K_BATTERY_VERBOSE" == true ]]; then
message="$message $bat_percent%%$remain"
fi
# display prompt_segment # display prompt_segment
[[ -n $bat_percent ]] && "$1_prompt_segment" "${0}_${current_state}" "$DEFAULT_COLOR" "${battery_states[$current_state]}" "$(print_icon 'BATTERY_ICON') $bat_percent%%$remain" [[ -n $bat_percent ]] && "$1_prompt_segment" "${0}_${current_state}" "$DEFAULT_COLOR" "${battery_states[$current_state]}" "$message"
} }
# Context: user@hostname (who am I and where am I) # Context: user@hostname (who am I and where am I)

Loading…
Cancel
Save