mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
fix load fg color
This commit is contained in:
parent
cb2ca16f51
commit
eb58f05621
1 changed files with 3 additions and 3 deletions
|
@ -1594,11 +1594,11 @@ prompt_load() {
|
|||
(( _p9k_num_cpus )) || return
|
||||
|
||||
if (( load > 0.7 * _p9k_num_cpus )); then
|
||||
local state=critical bg=red
|
||||
local state=CRITICAL bg=red
|
||||
elif (( load > 0.5 * _p9k_num_cpus )); then
|
||||
local state=warning bg=yellow
|
||||
local state=WARNING bg=yellow
|
||||
else
|
||||
local state=normal bg=green
|
||||
local state=NORMAL bg=green
|
||||
fi
|
||||
|
||||
_p9k_prompt_segment $0_$state $bg "$_p9k_color1" LOAD_ICON 0 '' $load
|
||||
|
|
Loading…
Reference in a new issue