-
-
Notifications
You must be signed in to change notification settings - Fork 38
Migration guides
Samuel FORESTIER edited this page Nov 29, 2020
·
16 revisions
TL;DR You should get the new template and backport your configuration to it.
Also (and always) check the README for some examples and further explanations.
Starting with v4.9.0, entries can be re-ordered, renamed (name
special key) and temporary disabled (disabled
special key).
Additionally, their respective options are now declared as neighbor key-value pairs.
{
// ...
"entries": [
// ...
{ "type": "Packages" },
{
"type": "Temperature",
"char_before_unit": " ",
"sensors_chipsets": [],
"use_fahrenheit": false
},
{
"type": "CPU",
"one_line": false,
"show_cores": true
},
// ...
],
// ...
}
As consequences and for consistency purposes :
-
colors_palette.honor_ansi_color
is now a "root" option (honor_ansi_color
) ; -
colors_palette.use_unicode
has been moved toTerminal
entry specific options ; -
limits.{disk,ram}.{warning,danger}
have been respectively moved to their respective entries options as{warning,danger}_use_percent
; -
ip_settings
&timeout
options have been puzzled acrossLAN_IP
&WAN_IP
.
New settings have also appeared (should be self-explanatory) :
-
CPU
:one_line
&show_cores
-
WAN_IP
:{ipv4,ipv6}.{dns_query,dns_resolver,dns_timeout,http_url,http_timeout}