1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-25 12:40:44 +00:00

Merge pull request #252 from rawkode/feature/better-battery-core-improvements

Improvements to load prompt, now reporting warning and critical at 50…
This commit is contained in:
Ben Hilburn 2016-05-02 17:29:32 -04:00
commit af7d952480

View file

@ -578,30 +578,35 @@ prompt_ip() {
prompt_load() { prompt_load() {
# The load segment can have three different states # The load segment can have three different states
local current_state="unknown" local current_state="unknown"
local cores
typeset -AH load_states typeset -AH load_states
load_states=( load_states=(
'critical' 'red' 'critical' 'red'
'warning' 'yellow' 'warning' 'yellow'
'normal' 'green' 'normal' 'green'
) )
if [[ "$OS" == "OSX" ]]; then if [[ "$OS" == "OSX" ]]; then
load_avg_5min=$(sysctl vm.loadavg | grep -o -E '[0-9]+(\.|,)[0-9]+' | head -n 1) load_avg_1min=$(sysctl vm.loadavg | grep -o -E '[0-9]+(\.|,)[0-9]+' | head -n 1)
cores=$(sysctl -n hw.logicalcpu)
else else
load_avg_5min=$(grep -o "[0-9.]*" /proc/loadavg | head -n 1) load_avg_1min=$(grep -o "[0-9.]*" /proc/loadavg | head -n 1)
cores=$(nproc)
fi fi
# Replace comma # Replace comma
load_avg_5min=${load_avg_5min//,/.} load_avg_1min=${load_avg_1min//,/.}
if [[ "$load_avg_5min" -gt 10 ]]; then if [[ "$load_avg_1min" -gt $(bc -l <<< "${cores} * 0.7") ]]; then
current_state="critical" current_state="critical"
elif [[ "$load_avg_5min" -gt 3 ]]; then elif [[ "$load_avg_1min" -gt $(bc -l <<< "${cores} * 0.5") ]]; then
current_state="warning" current_state="warning"
else else
current_state="normal" current_state="normal"
fi fi
"$1_prompt_segment" "${0}_${current_state}" "$2" "${load_states[$current_state]}" "$DEFAULT_COLOR" "$load_avg_5min" 'LOAD_ICON' "$1_prompt_segment" "${0}_${current_state}" "$2" "${load_states[$current_state]}" "$DEFAULT_COLOR" "$load_avg_1min" 'LOAD_ICON'
} }
# Node version # Node version