You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -194,7 +193,7 @@ See [#1096](https://github.com/fastfetch-cli/fastfetch/issues/1096).
194
193
195
194
Neofetch incorrectly counts `rc` packages ( the package has been removed, but that the configuration files remain ). Bug https://github.com/dylanaraps/neofetch/issues/2278
196
195
197
-
### Q: I use Debian / Ubuntu / Debian deserved distro. My GPU is detected as `XXXX Device XXXX (VGA compatible)`. Is it a bug?
196
+
### Q: I use Debian / Ubuntu / Debian derived distro. My GPU is detected as `XXXX Device XXXX (VGA compatible)`. Is it a bug?
198
197
199
198
Try upgrading `pci.ids`: Download <https://pci-ids.ucw.cz/v2.2/pci.ids> and overwrite file `/usr/share/hwdata/pci.ids`. For AMD GPUs, you should also upgrade `amdgpu.ids`: Download <https://gitlab.freedesktop.org/mesa/drm/-/raw/main/data/amdgpu.ids> and overwrite file `/usr/share/libdrm/amdgpu.ids`
Copy file name to clipboardexpand all lines: doc/json_schema.json
+37-5
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,35 @@
34
34
"description": "Output color of the module. Left empty to use `display.color.output`",
35
35
"$ref": "#/$defs/colors"
36
36
},
37
+
"percentType": {
38
+
"description": "Set the percentage output type",
39
+
"oneOf": [
40
+
{
41
+
"type": "number",
42
+
"description": "1 for percentage number, 2 for multi-color bar, 3 for both, 6 for bar only, 9 for colored number, 10 for monochrome bar",
43
+
"minimum": 0,
44
+
"maximum": 255,
45
+
"default": 9
46
+
},
47
+
{
48
+
"type": "array",
49
+
"description": "array of string flags",
50
+
"items": {
51
+
"enum": [
52
+
"num",
53
+
"bar",
54
+
"hide-others",
55
+
"num-color",
56
+
"bar-monochrome"
57
+
]
58
+
},
59
+
"default": [
60
+
"num",
61
+
"num-color"
62
+
]
63
+
}
64
+
]
65
+
},
37
66
"percent": {
38
67
"description": "Threshold of percentage colors",
39
68
"type": "object",
@@ -50,6 +79,9 @@
50
79
"minimum": 0,
51
80
"maximum": 100,
52
81
"description": "Value greater than green and less then yellow will be shown in yellow.\nValue greater than yellow will be shown in red"
82
+
},
83
+
"type": {
84
+
"$ref": "#/$defs/percentType"
53
85
}
54
86
}
55
87
},
@@ -576,11 +608,7 @@
576
608
"description": "Set how a percentage value should be displayed",
577
609
"properties": {
578
610
"type": {
579
-
"type": "number",
580
-
"description": "Set the percentage output type. 1 for percentage number, 2 for multi-color bar, 3 for both, 6 for bar only, 9 for colored number, 10 for monochrome bar",
0 commit comments