archey4/archey/config.json
Samuel FORESTIER 7da2db939b
LAN_IP, Model and Packages entries reworks (#51)
* Reworks the `Packages` entry, mostly simplifying its logic
* Reworks `LAN_IP` entry and adds a new `lan_ip_v6_support` option
* Reworks the `Model` entry :
    + Checks for virtualization contexts first
    + Adds `systemd-detect-virt` support, allowing `Model` population for non-root users
    + Simplifies the whole class logic definition
    - Removes `default_strings.bare_metal_environment` option

Bonus :
* `wget` is not being used anymore, fixes documentation
2019-12-26 21:10:22 +00:00

56 lines
963 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
},
"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": " ",
"use_fahrenheit": false
},
"timeout": {
"ipv4_detection": 1,
"ipv6_detection": 1
}
}