archey4/archey/config.json
Samuel FORESTIER afe8a35d26 [TEMPERATURE] [FEATURE] Allows users to specify chipsets for avg. temp.
+ New configuration option `temperature.sensors_chipsets`

- [BREAKING (?)] `sensors` sub-call won't have its STDERR redirected to `/dev/null` anymore.
-                It allows occurring errors to be shown, instead of silently fail in temperature computations.
-                This could happen if the user specifies (a) wrong chipset identifiers.
-                Errors/warnings may still be silenced at the Archey level using the `suppress_warnings` configuration option.

- This new feature could not be unit-tested as it completely relies on the `sensors` sub-call, to which we pass chipsets identifiers.
2020-04-24 13:52:43 +02:00

58 lines
1017 B
JSON

{
"allow_overriding": true,
"suppress_warnings": false,
"entries": {
"User": true,
"Hostname": true,
"Model": true,
"Distro": true,
"Kernel": true,
"Uptime": true,
"WindowManager": true,
"DesktopEnvironment": true,
"Shell": true,
"Terminal": true,
"Packages": true,
"Temperature": true,
"CPU": true,
"GPU": true,
"RAM": true,
"Disk": true,
"LAN_IP": true,
"WAN_IP": true
},
"colors_palette": {
"use_unicode": false,
"honor_ansi_color": true
},
"default_strings": {
"no_address": "No Address",
"not_detected": "Not detected",
"virtual_environment": "Virtual Environment"
},
"ip_settings": {
"lan_ip_max_count": 2,
"lan_ip_v6_support": true,
"wan_ip_v6_support": true
},
"limits": {
"ram": {
"warning": 33.3,
"danger": 66.7
},
"disk": {
"warning": 50,
"danger": 75
}
},
"temperature": {
"char_before_unit": " ",
"sensors_chipsets": [],
"use_fahrenheit": false
},
"timeout": {
"ipv4_detection": 1,
"ipv6_detection": 1
}
}