archey4/archey/config.json
Michael Bromilow 899042dce9
[FEATURE] Multiple Disk entries (#67)
The entire entry has been rewritten, and now relies exclusively on a single call to `df -P -k`.

+ Adds support for multi-line disk output (fixes #55)
+ Fixes #62 by using a "standard" `df` call
+ Makes the whole entry configurable to choose disk labels, as long as which elements to show

Co-authored-by: Samuel FORESTIER <dev@samuel.domains>
2020-05-30 20:07:48 +00:00

70 lines
1.2 KiB
JSON

{
"allow_overriding": true,
"parallel_loading": true,
"suppress_warnings": false,
"entries": {
"User": true,
"Hostname": true,
"Model": true,
"Distro": true,
"Kernel": true,
"Uptime": true,
"Processes": 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": true,
"honor_ansi_color": true
},
"disk": {
"show_filesystems": ["local"],
"combine_total": true,
"disk_labels": null,
"hide_entry_name": null
},
"default_strings": {
"no_address": "No Address",
"not_detected": "Not detected",
"virtual_environment": "Virtual Environment"
},
"gpu": {
"one_line": true,
"max_count": 2
},
"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
}
}