mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 10:52:08 +02:00
Disk: allows array input for disk folder and filesystem options
This commit is contained in:
+49
-6
@@ -2307,17 +2307,60 @@
|
||||
"const": "disk"
|
||||
},
|
||||
"folders": {
|
||||
"type": "string",
|
||||
"description": "A colon (semicolon on Windows) separated list of folder paths for the disk output\nDefault: auto detection using mount-points\nThis option overrides other `show*` options"
|
||||
"description": "A list of folder paths for the disk output\nDefault: auto detection using mount-points\nThis option overrides other `show*` options",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "A colon (semicolon on Windows) separated list of folder paths to get disk usage from",
|
||||
"default": "/"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"description": "An array of folder paths to get disk usage from",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"hideFolders": {
|
||||
"type": "string",
|
||||
"description": "A colon (semicolon on Windows) separated list of folder paths to hide from the disk output",
|
||||
"description": "A list of folder paths to hide from the disk output",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "A colon (semicolon on Windows) separated list of folder paths to hide from the disk output"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"description": "An array of folder paths to hide from the disk output",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true
|
||||
}
|
||||
],
|
||||
"default": "/efi:/boot:/boot/efi:/boot/firmware"
|
||||
},
|
||||
"hideFS": {
|
||||
"type": "string",
|
||||
"description": "A colon separated file systems to hide from the disk output"
|
||||
"description": "A list of file systems to hide from the disk output",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "A colon separated list of file systems to hide from the disk output"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"description": "An array of file systems to hide from the disk output",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"showRegular": {
|
||||
"type": "boolean",
|
||||
|
||||
Reference in New Issue
Block a user