More bold (load average display)
This commit is contained in:
parent
168665b7e4
commit
d97292719f
1 changed files with 5 additions and 2 deletions
|
@ -881,10 +881,13 @@ sub render_load
|
||||||
$cat = 'high';
|
$cat = 'high';
|
||||||
}
|
}
|
||||||
|
|
||||||
$load = (themed 'load_title') . $load . '%';
|
|
||||||
return {
|
return {
|
||||||
bg => themed( 'load_' . $cat . '_bg' ) ,
|
bg => themed( 'load_' . $cat . '_bg' ) ,
|
||||||
content => [ {fg=>themed( 'load_' . $cat . '_fg' )}, $load ]
|
content => [
|
||||||
|
{fg=>themed( 'load_' . $cat . '_fg' )},
|
||||||
|
(themed 'load_title') ,
|
||||||
|
{style=>'b'}, $load . '%' , {style=>'none'},
|
||||||
|
]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue