fastfetch-sys 2.43.0

A neofetch like system information tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
{
    "Informative": [
        {
            "short": "h",
            "long": "help",
            "desc": "Display this help message or help for a specific command",
            "arg": {
                "type": "command",
                "optional": true
            }
        },
        {
            "short": "v",
            "long": "version",
            "desc": "Show the full version of fastfetch"
        },
        {
            "long": "version-raw",
            "desc": "Display the raw version string (major.minor.patch)"
        },
        {
            "long": "list-config-paths",
            "desc": "List search paths for config files"
        },
        {
            "long": "list-data-paths",
            "desc": "List search paths for presets and logos"
        },
        {
            "long": "list-logos",
            "desc": "List available logos"
        },
        {
            "long": "list-modules",
            "desc": "List available modules"
        },
        {
            "long": "list-presets",
            "desc": "List presets that fastfetch knows about",
            "remark": "Presets can be loaded with \"--config <preset-name>\""
        },
        {
            "long": "list-features",
            "desc": "List the supported features that fastfetch was compiled with",
            "remark": "Mainly for development"
        },
        {
            "long": "print-logos",
            "desc": "Display available logos"
        },
        {
            "long": "print-structure",
            "desc": "Display the default structure"
        },
        {
            "long": "format",
            "desc": "Set output format",
            "arg": {
                "type": "enum",
                "enum": {
                    "default": "Default format",
                    "json": "JSON format"
                },
                "default": "default"
            }
        }
    ],
    "Config": [
        {
            "short": "c",
            "long": "config",
            "desc": "Specify the config file or preset to load",
            "remark": "The file will be searched according to the order shown by \"fastfetch --list-config-paths\". Use \"none\" to disable further config loading. See also https://github.com/fastfetch-cli/fastfetch/wiki/Configuration for more info",
            "arg": {
                "type": "config"
            }
        },
        {
            "long": "gen-config",
            "desc": "Generate a config file at the specified path with options from the command line (if any)",
            "remark": "Defaults to \"~/.config/fastfetch/config.jsonc\". Will print the generated config if <path> is \"-\"",
            "arg": {
                "type": "path",
                "optional": true
            }
        },
        {
            "long": "gen-config-force",
            "desc": "Generate a config file at the specified path, overwriting any existing file",
            "remark": "Defaults to \"~/.config/fastfetch/config.jsonc\"",
            "arg": {
                "type": "path",
                "optional": true
            }
        }
    ],
    "General": [
        {
            "long": "thread",
            "desc": "Use separate threads for HTTP requests",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "wmi-timeout",
            "desc": "Set the timeout (ms) for WMI queries",
            "remark": "Windows only",
            "arg": {
                "type": "num",
                "default": 5000
            }
        },
        {
            "long": "processing-timeout",
            "desc": "Set the timeout (ms) when waiting for child processes",
            "arg": {
                "type": "num",
                "default": 5000
            }
        },
        {
            "long": "ds-force-drm",
            "desc": "Specify whether only DRM should be used to detect displays",
            "remark": [
                "Use this option if you encounter problems with other detection methods.",
                "Linux only"
            ],
            "arg": {
                "type": "enum",
                "optional": true,
                "default": "false",
                "enum": {
                    "true": "Try `libdrm` first, then `sysfs` if libdrm fails",
                    "sysfs-only": "Use `/sys/class/drm` only",
                    "false": "Try `wayland`, then `x11`, then `drm`"
                }
            }
        },
        {
            "long": "detect-version",
            "desc": "Specify whether to detect and display versions of terminal, shell, editor, and others",
            "remark": "Mainly for benchmarking",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        }
    ],
    "Logo": [
        {
            "short": "l",
            "long": "logo",
            "desc": "Set the logo source. Use \"none\" to disable the logo",
            "remark": "Should be the name of a built-in logo or a path to an image file. See also https://github.com/fastfetch-cli/fastfetch/wiki/Logo-options",
            "arg": {
                "type": "logo"
            }
        },
        {
            "long": "logo-type",
            "desc": "Set the type of the logo specified in \"--logo\"",
            "remark": "See also https://github.com/fastfetch-cli/fastfetch/wiki/Logo-options",
            "arg": {
                "type": "enum",
                "enum": {
                    "auto": "If something is given, first try built-in, then file. Otherwise detect logo",
                    "builtin": "Built-in ASCII art",
                    "small": "Built-in ASCII art, small version",
                    "file": "Text file, printed with color code replacement",
                    "file-raw": "Text file, printed as is",
                    "data": "Text data, printed with color code replacement",
                    "data-raw": "Text data, printed as is",
                    "sixel": "Image file, printed as sixel codes",
                    "kitty": "Image file, printed using kitty graphics protocol",
                    "kitty-direct": "Image file, tells the terminal emulator to read image data from the specified file",
                    "kitty-icat": "Image file, uses `kitten icat` to display the image. Requires binary `kitten` to be installed",
                    "iterm": "Image file, printed using iterm graphics protocol",
                    "chafa": "Image file, printed as ASCII art using libchafa",
                    "raw": "Image file, printed as raw binary string",
                    "none": "Disable logo printing"
                }
            }
        },
        {
            "long": "logo-width",
            "desc": "Set the width of the logo (in characters) if it is an image",
            "remark": "Required for iTerm image protocol",
            "arg": {
                "type": "num"
            }
        },
        {
            "long": "logo-height",
            "desc": "Set the height of the logo (in characters) if it is an image",
            "remark": "Required for iTerm image protocol",
            "arg": {
                "type": "num"
            }
        },
        {
            "long": "logo-preserve-aspect-ratio",
            "desc": "Specify whether the logo should fill the specified width and height as much as possible without stretching",
            "remark": "Supported by iTerm image protocol only",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "logo-color-[1-9]",
            "desc": "Override a color in the logo",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color"
            },
            "pseudo": true
        },
        {
            "long": "logo-padding",
            "desc": "Set the padding on the left and right sides of the logo",
            "arg": {
                "type": "num"
            }
        },
        {
            "long": "logo-padding-left",
            "desc": "Set the padding on the left side of the logo",
            "arg": {
                "type": "num"
            }
        },
        {
            "long": "logo-padding-right",
            "desc": "Set the padding on the right side of the logo",
            "arg": {
                "type": "num"
            }
        },
        {
            "long": "logo-padding-top",
            "desc": "Set the padding at the top of the logo",
            "arg": {
                "type": "num"
            }
        },
        {
            "long": "logo-print-remaining",
            "desc": "Specify whether to print the remaining logo if it has more lines than modules to display",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "logo-position",
            "desc": "Set the position where the logo should be displayed",
            "arg": {
                "type": "enum",
                "enum": {
                    "left": "Left",
                    "top": "Top",
                    "right": "Right"
                }
            }
        },
        {
            "long": "logo-recache",
            "desc": "If true, regenerate the image logo cache",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "file",
            "desc": "Short for --logo-type file --logo <path>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "path"
            }
        },
        {
            "long": "file-raw",
            "desc": "Short for --logo-type file-raw --logo <path>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "path"
            }
        },
        {
            "long": "data",
            "desc": "Short for --logo-type data --logo <data>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "data"
            }
        },
        {
            "long": "data-raw",
            "desc": "Short for --logo-type data-raw --logo <data>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "data"
            }
        },
        {
            "long": "raw",
            "desc": "Short for --logo-type raw --logo <path>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "path"
            }
        },
        {
            "long": "sixel",
            "desc": "Short for --logo-type sixel --logo <path>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "path"
            }
        },
        {
            "long": "kitty",
            "desc": "Short for --logo-type kitty --logo <path>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "path"
            }
        },
        {
            "long": "kitty-direct",
            "desc": "Short for --logo-type kitty-direct --logo <path>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "path"
            }
        },
        {
            "long": "kitty-icat",
            "desc": "Short for --logo-type kitty-icat --logo <path>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "path"
            }
        },
        {
            "long": "iterm",
            "desc": "Short for --logo-type iterm --logo <path>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "path"
            }
        },
        {
            "long": "chafa",
            "desc": "Short for --logo-type chafa --logo <path>",
            "remark": "See \"--help logo-type\" for more info",
            "arg": {
                "type": "path"
            }
        },
        {
            "long": "chafa-fg-only",
            "desc": "Produce character-cell output using foreground colors only",
            "remark": "See chafa document for detail",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "chafa-symbols",
            "desc": "Specify character symbols to employ in final output",
            "remark": "See chafa document for detail",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "chafa-canvas-mode",
            "desc": "Determine how colors are used in the output",
            "remark": "This value maps the int value of enum ChafaCanvasMode. See chafa document for detail",
            "arg": {
                "type": "enum",
                "enum": {
                    "TRUECOLOR": "Truecolor",
                    "INDEXED_256": "256 colors",
                    "INDEXED_240": "256 colors, but avoid using the lower 16 whose values vary between terminal environments",
                    "INDEXED_16": "16 colors using the aixterm ANSI extension",
                    "FGBG_BGFG": "Default foreground and background colors, plus inversion",
                    "FGBG": "Default foreground and background colors. No ANSI codes will be used",
                    "INDEXED_8": "8 colors, compatible with original ANSI X3.64",
                    "INDEXED_16_8": "16 FG colors (8 of which enabled with bold/bright) and 8 BG colors"
                }
            }
        },
        {
            "long": "chafa-color-space",
            "desc": "Set color space used for quantization",
            "remark": "This value maps the int value of enum ChafaColorSpace. See chafa document for detail",
            "arg": {
                "type": "enum",
                "enum": {
                    "RGB": "RGB color space. Fast but imprecise",
                    "DIN99D": "DIN99d color space. Slower, but good perceptual color precision"
                }
            }
        },
        {
            "long": "chafa-dither-mode",
            "desc": "Set output dither mode (No effect with 24-bit color)",
            "remark": "This value maps the int value of enum ChafaDitherMode. See chafa document for detail",
            "arg": {
                "type": "enum",
                "enum": {
                    "NONE": "No dithering",
                    "ORDERED": "Ordered dithering (Bayer or similar)",
                    "DIFFUSION": "Error diffusion dithering (Floyd-Steinberg or similar)"
                }
            }
        }
    ],
    "Display": [
        {
            "short": "s",
            "long": "structure",
            "desc": "Set the structure of the fetch",
            "remark": "Must be a colon-separated list of keys. Use \"fastfetch --list-modules\" to see available options",
            "arg": {
                "type": "structure",
                "default": "\"fastfetch --print-structure\""
            }
        },
        {
            "long": "stat",
            "desc": "Show time usage (in ms) for individual modules",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "pipe",
            "desc": "Disable colors",
            "remark": "Auto-detected based on isatty(1) by default",
            "arg": {
                "type": "bool",
                "optional": true
            }
        },
        {
            "long": "color",
            "desc": "Set the color of both keys and title",
            "remark": [
                "Shortcut for \"--color-keys <color>\" and \"--color-title <color>\"",
                "For color syntax, see <https://github.com/fastfetch-cli/fastfetch/wiki/Color-Format-Specification>"
            ],
            "arg": {
                "type": "color"
            }
        },
        {
            "long": "color-keys",
            "desc": "Set the color of the keys",
            "remark": "Doesn't affect Title, Separator, and Colors modules. See `-h color` for the list of available colors",
            "arg": {
                "type": "color"
            }
        },
        {
            "long": "color-title",
            "desc": "Set the color of the title",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color"
            }
        },
        {
            "long": "color-output",
            "desc": "Set the color of module output",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color"
            }
        },
        {
            "long": "color-separator",
            "desc": "Set the color of the key-value separator",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color"
            }
        },
        {
            "long": "key-width",
            "desc": "Align the width of keys to <num> characters",
            "arg": {
                "type": "num"
            }
        },
        {
            "long": "key-padding-left",
            "desc": "Set the left padding of keys to <num> characters",
            "arg": {
                "type": "num"
            }
        },
        {
            "long": "key-type",
            "desc": "Specify whether to show an icon before string keys",
            "arg": {
                "type": "enum",
                "enum": {
                    "none": "Disable keys",
                    "string": "Show string",
                    "icon": "Show icon (requires newest nerd font)",
                    "both": "Show both icon and string"
                },
                "default": "string"
            }
        },
        {
            "long": "bright-color",
            "desc": "Specify whether keys, title, and ASCII logo should be printed in bright color",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "separator",
            "desc": "Set the separator between key and value",
            "arg": {
                "type": "str",
                "default": ": "
            }
        },
        {
            "long": "show-errors",
            "desc": "Print errors when they occur",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "disable-linewrap",
            "desc": "Specify whether to disable line wrap during execution",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "hide-cursor",
            "desc": "Specify whether to hide the cursor during execution",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "percent-type",
            "desc": "Set the percentage output type",
            "remark": [
                "1 for percentage number",
                "2 for multi-color bar",
                "3 for both",
                "6 for bar only",
                "9 for colored number",
                "10 for monochrome bar"
            ],
            "arg": {
                "type": "num",
                "default": 9
            }
        },
        {
            "long": "percent-ndigits",
            "desc": "Set the number of digits to keep after the decimal point when formatting percentage numbers",
            "arg": {
                "type": "num",
                "default": 0
            }
        },
        {
            "long": "percent-color-green",
            "desc": "Set color used for the green state of percentage bars and numbers",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color",
                "default": "green"
            }
        },
        {
            "long": "percent-color-yellow",
            "desc": "Set color used for the yellow state of percentage bars and numbers",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color",
                "default": "light_yellow"
            }
        },
        {
            "long": "percent-color-red",
            "desc": "Set color used for the red state of percentage bars and numbers",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color",
                "default": "light_red"
            }
        },
        {
            "long": "bar-char-elapsed",
            "desc": "Set the character to use in the elapsed part of percentage bars",
            "arg": {
                "type": "str",
                "default": "\u25a0"
            }
        },
        {
            "long": "bar-char-total",
            "desc": "Set the character to use in the total part of percentage bars",
            "arg": {
                "type": "str",
                "default": "-"
            }
        },
        {
            "long": "bar-border-left",
            "desc": "Set the string to use at the left border of percentage bars",
            "arg": {
                "type": "string",
                "default": "[ "
            }
        },
        {
            "long": "bar-border-right",
            "desc": "Set the string to use at the right border of percentage bars",
            "arg": {
                "type": "string",
                "default": " ]"
            }
        },
        {
            "long": "bar-width",
            "desc": "Set the width of percentage bars in characters",
            "arg": {
                "type": "num",
                "default": 10
            }
        },
        {
            "long": "no-buffer",
            "desc": "Specify whether the stdout application buffer should be disabled",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "size-ndigits",
            "desc": "Set the number of digits to keep after the decimal point when formatting sizes",
            "arg": {
                "type": "num"
            }
        },
        {
            "long": "size-binary-prefix",
            "desc": "Set the binary prefix to use when formatting sizes",
            "arg": {
                "type": "enum",
                "enum": {
                    "IEC": "1024 Bytes = 1 KiB, 1024 KiB = 1 MiB, ...",
                    "SI": "1000 Bytes = 1 kB, 1000 kB = 1 MB, ...",
                    "JEDEC": "1024 Bytes = 1 KB, 1024 KB = 1 MB, ..."
                },
                "default": "IEC"
            }
        },
        {
            "long": "size-max-prefix",
            "desc": "Set the largest binary prefix to use when formatting sizes",
            "arg": {
                "type": "enum",
                "enum": {
                    "B": "Bytes",
                    "kB": "KiB",
                    "MB": "MiB",
                    "GB": "GiB",
                    "TB": "TiB",
                    "PB": "PiB",
                    "EB": "EiB",
                    "ZB": "ZiB",
                    "YB": "YiB"
                },
                "default": "YB"
            }
        },
        {
            "long": "freq-ndigits",
            "desc": "Set the number of digits to keep after the decimal point when printing CPU/GPU frequency in GHz",
            "arg": {
                "type": "num",
                "default": 2
            }
        },
        {
            "long": "temp-unit",
            "desc": "Set the temperature unit",
            "arg": {
                "type": "enum",
                "enum": {
                    "D": "Default",
                    "C": "Celsius",
                    "F": "Fahrenheit",
                    "K": "Kelvin"
                },
                "default": "D"
            }
        },
        {
            "long": "temp-ndigits",
            "desc": "Set the number of digits to keep after the decimal point when printing temperature",
            "arg": {
                "type": "num",
                "default": 2
            }
        },
        {
            "long": "temp-color-green",
            "desc": "Set color used for the green state of temperature values",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color",
                "default": "green"
            }
        },
        {
            "long": "temp-color-yellow",
            "desc": "Set color used for the yellow state of temperature values",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color",
                "default": "light_yellow"
            }
        },
        {
            "long": "temp-color-red",
            "desc": "Set color used for the red state of temperature values",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color",
                "default": "light_red"
            }
        }
    ],
    "Module specific": [
        {
            "long": "title-fqdn",
            "desc": "Specify whether the title should use fully qualified domain name",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "title-color-user",
            "desc": "Set the color of the user name (left part)",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color",
                "default": "Use color of \"--color-title\""
            }
        },
        {
            "long": "title-color-at",
            "desc": "Set the color of the @ symbol (middle part)",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color",
                "default": "Use color of \"--color-title\""
            }
        },
        {
            "long": "title-color-host",
            "desc": "Set the color of the host name (right part)",
            "remark": "See `-h color` for the list of available colors",
            "arg": {
                "type": "color",
                "default": "default"
            }
        },
        {
            "long": "separator-string",
            "desc": "Set the string to be printed by the separator line",
            "arg": {
                "type": "str",
                "default": "-"
            }
        },
        {
            "long": "separator-output-color",
            "desc": "Set the color of the separator line",
            "arg": {
                "type": "color",
                "default": "default"
            }
        },
        {
            "long": "separator-length",
            "desc": "Set the length of the separator line",
            "remark": "Set to 0 to automatically calculate it based on the title length",
            "arg": {
                "type": "num",
                "default": "0"
            }
        },
        {
            "long": "disk-folders",
            "desc": "A colon (semicolon on Windows) separated list of folder paths to detect",
            "remark": "On Windows, a drive letter must be upper-cased and end with \"\\\". \"/\" is used as an alias of the system drive. This option overrides other disk-show-* options",
            "arg": {
                "type": "path",
                "default": "Auto detection using mount-points"
            }
        },
        {
            "long": "disk-show-regular",
            "desc": "Specify whether regular volumes should be displayed",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "disk-show-external",
            "desc": "Specify whether external volumes should be displayed",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "disk-show-hidden",
            "desc": "Specify whether hidden volumes should be displayed",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "disk-show-subvolumes",
            "desc": "Specify whether subvolumes should be displayed",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "disk-show-readonly",
            "desc": "Specify whether read-only volumes should be displayed",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "disk-show-unknown",
            "desc": "Specify whether unknown volumes (unable to detect sizes) should be displayed",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "disk-use-available",
            "desc": "Use f_bavail (lpFreeBytesAvailableToCaller for Windows) instead of f_bfree to calculate used bytes",
            "remark": "May be required for macOS to display correct results",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "diskio-detect-total",
            "desc": "Detect total bytes instead of current rate",
            "arg": {
                "type": "bool",
                "default": false
            }
        },
        {
            "long": "diskio-name-prefix",
            "desc": "Show only disks with the given name prefix",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "diskio-wait-time",
            "desc": "Set the wait time (in ms) when detecting disk usage",
            "arg": {
                "type": "num",
                "default": 1000
            }
        },
        {
            "long": "physicaldisk-name-prefix",
            "desc": "Show only disks with the given name prefix",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "physicaldisk-temp",
            "desc": "Detect and display SSD temperature if supported",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "bluetooth-show-disconnected",
            "desc": "Specify whether disconnected Bluetooth devices should be displayed",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "packages-disabled",
            "desc": "A colon-separated list of package managers to disable when detecting",
            "remark": [
                "Some detection methods can be very slow.",
                "You may need to increase the value of '--processing-timeout' to make it work properly.",
                "Use `--packages-disabled none` to enable all."
            ],
            "arg": {
                "type": "string",
                "default": "winget"
            }
        },
        {
            "long": "display-compact-type",
            "desc": "Specify whether all displays should be printed in one line",
            "arg": {
                "type": "enum",
                "enum": {
                    "none": "Disable this compact mode",
                    "original": "Print original resolutions",
                    "scaled": "Print scaled resolutions",
                    "original-with-refresh-rate": "Print original resolutions with refresh rate",
                    "scaled-with-refresh-rate": "Print scaled resolutions with refresh rate"
                },
                "default": "none"
            }
        },
        {
            "long": "display-precise-refresh-rate",
            "desc": "Specify whether decimal refresh rates should not be rounded to integers when printing",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "display-order",
            "desc": "Set the order to use when printing displays",
            "arg": {
                "type": "enum",
                "enum": {
                    "none": "Use the detected order",
                    "asc": "Sort by display name in ascending order",
                    "desc": "Sort by display name in descending order"
                },
                "default": "none"
            }
        },
        {
            "long": "brightness-ddcci-sleep",
            "desc": "Set the sleep time (in ms) when sending DDC/CI requests",
            "remark": "See <https://www.ddcutil.com/performance_options/#option-sleep-multiplier> for details",
            "arg": {
                "type": "num",
                "default": 10
            }
        },
        {
            "long": "brightness-compact",
            "desc": "Specify whether multiple results should be printed in one line",
            "arg": {
                "type": "bool",
                "default": false
            }
        },
        {
            "long": "sound-type",
            "desc": "Set which types of sound devices should be displayed",
            "arg": {
                "type": "enum",
                "enum": {
                    "main": "Print only main sound devices",
                    "active": "Print only active sound devices",
                    "all": "Print all sound devices"
                },
                "default": "main"
            }
        },
        {
            "long": "battery-use-setup-api",
            "desc": "Specify whether \"SetupAPI\" should be used on Windows to detect battery info",
            "remark": [
                "SetupAPI supports multiple batteries, but is slower.",
                "Windows only"
            ],
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "cpu-temp",
            "desc": "Detect and display CPU temperature if supported",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "cpu-show-pe-core-count",
            "desc": "Detect and display CPU frequency of different core types (e.g., P-cores and E-cores) if supported",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "cpucache-compact",
            "desc": "Show all CPU caches in one line",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "cpuusage-separate",
            "desc": "Display CPU usage per logical core, instead of an average result",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "cpuusage-wait-time",
            "desc": "Set the wait time (in ms) when detecting CPU usage",
            "arg": {
                "type": "num",
                "default": 200
            }
        },
        {
            "long": "de-slow-version-detection",
            "desc": "Specify whether DE version should be detected with slower operations",
            "remark": [
                "This is only used as a fallback method. Please file a bug report if you encounter any issues.",
                "Linux only"
            ],
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "gpu-temp",
            "desc": "Detect and display GPU temperature if supported",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "gpu-driver-specific",
            "desc": "Use driver-specific methods to detect more detailed GPU information (memory usage, core count, etc.)",
            "remark": "Requires the latest GPU drivers to be installed.",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "gpu-detection-method",
            "desc": "Force using a specified method to detect GPUs",
            "remark": "Will fall back to other methods if the specified method fails",
            "arg": {
                "type": "enum",
                "enum": {
                    "auto": "Query platform-specific graphics APIs. Requires proper GPU drivers to be installed. Not supported on BSDs",
                    "pci": "Search PCI devices, which does not require GPU drivers to be installed. Not supported on Windows and macOS",
                    "vulkan": "Use Vulkan API. Slow and requires proper Vulkan drivers to be installed. Used for Android",
                    "opencl": "Use OpenCL API. Slow and requires proper OpenCL drivers to be installed",
                    "opengl": "Use OpenGL API. Slow and only detects one GPU"
                },
                "default": "auto"
            }
        },
        {
            "long": "gpu-hide-type",
            "desc": "Specify which types of GPUs should not be displayed (default: all GPUs are shown, regardless of recognition)",
            "arg": {
                "type": "enum",
                "enum": {
                    "integrated": "Hide integrated GPUs",
                    "discrete": "Hide discrete GPUs",
                    "unknown": "Hide unknown (unrecognized) GPUs",
                    "none": "Do not hide any GPUs"
                },
                "default": "none"
            }
        },
        {
            "long": "battery-temp",
            "desc": "Detect and display battery temperature if supported",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "loadavg-ndigits",
            "desc": "Set the number of digits to keep after the decimal point when printing load average",
            "arg": {
                "type": "num",
                "default": 2
            }
        },
        {
            "long": "loadavg-compact",
            "desc": "Show load average values in one line",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "localip-show-ipv4",
            "desc": "Show IPv4 addresses in the local IP module",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "localip-show-ipv6",
            "desc": "Show IPv6 addresses in the local IP module",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "localip-show-mac",
            "desc": "Show MAC addresses in the local IP module",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "localip-show-loop",
            "desc": "Show loopback addresses (127.0.0.1) in the local IP module",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "localip-show-mtu",
            "desc": "Show network interface MTU (Maximum Transmission Unit) size in bytes",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "localip-show-speed",
            "desc": "Show network interface link speed in human-readable format (or as a 1Mb units integer in JSON format)",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "localip-show-prefix-len",
            "desc": "Show network prefix length (/N) in the local IP module",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "localip-name-prefix",
            "desc": "Show only interfaces with the given interface name prefix",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "localip-default-route-only",
            "desc": "Show only the interface that is used for default routing",
            "remark": "Doesn't work on Android",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "localip-show-all-ips",
            "desc": "Show all IPs bound to the same interface. By default, only the first IP is shown",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "localip-show-flags",
            "desc": "Show network interface flags in the local IP module",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "localip-compact",
            "desc": "Show all IPs in one line",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "dns-show-type",
            "desc": "Specify which types of DNS servers should be detected",
            "arg": {
                "type": "enum",
                "enum": {
                    "ipv4": "Show IPv4 addresses only",
                    "ipv6": "Show IPv6 addresses only",
                    "both": "Show both IPv4 and IPv6 addresses"
                },
                "default": "both"
            }
        },
        {
            "long": "netio-name-prefix",
            "desc": "Show only interfaces with the given name prefix",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "netio-default-route-only",
            "desc": "Show only the interface that is used for default routing",
            "remark": "Doesn't work on Android",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": true
            }
        },
        {
            "long": "netio-detect-total",
            "desc": "Detect total bytes instead of current rate",
            "arg": {
                "type": "bool",
                "default": false
            }
        },
        {
            "long": "netio-wait-time",
            "desc": "Set the wait time (in ms) when detecting network usage",
            "arg": {
                "type": "num",
                "default": 1000
            }
        },
        {
            "long": "publicip-timeout",
            "desc": "Time in milliseconds to wait for the public IP server to respond",
            "remark": "0 to disable timeout",
            "arg": {
                "type": "num",
                "default": 0
            }
        },
        {
            "long": "publicip-url",
            "desc": "The URL of the public IP detection server to use",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "publicip-ipv6",
            "desc": "Specify whether to use IPv6 for the public IP detection server",
            "arg": {
                "type": "bool",
                "default": false
            }
        },
        {
            "long": "weather-location",
            "desc": "Set the location to use",
            "remark": "Must be URI encoded (e.g., a whitespace must be encoded as \"+\")",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "weather-timeout",
            "desc": "Time in milliseconds to wait for the weather server to respond",
            "remark": "0 to disable timeout",
            "arg": {
                "type": "num",
                "default": 0
            }
        },
        {
            "long": "weather-output-format",
            "desc": "The output weather format to use",
            "remark": "Must be URI encoded",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "wm-detect-plugin",
            "desc": "Specify whether window manager plugins should be detected on supported platforms",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "users-compact",
            "desc": "Show all active users in one line",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "users-myself-only",
            "desc": "Show only the current user",
            "arg": {
                "type": "bool",
                "optional": true,
                "default": false
            }
        },
        {
            "long": "player-name",
            "desc": "The name of the player to use for the Media and Player modules",
            "remark": "Linux only",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "opengl-library",
            "desc": "Set the OpenGL context creation library to use",
            "arg": {
                "type": "enum",
                "enum": {
                    "auto": "Prefer EGL on *nix; prefer platform-specific implementation on others",
                    "egl": "EGL",
                    "glx": "GLX (*nix only)"
                },
                "default": "auto"
            }
        },
        {
            "long": "command-shell",
            "desc": "Set the shell program to execute the command text",
            "arg": {
                "type": "str",
                "default": "\"cmd\" for Windows; \"/bin/sh\" for *nix"
            }
        },
        {
            "long": "command-param",
            "desc": "Set the parameter to use when starting the shell",
            "remark": "If set to an empty string, it will be ignored",
            "arg": {
                "type": "str",
                "default": "\"/c\" for Windows; \"-c\" for *nix"
            }
        },
        {
            "long": "command-key",
            "desc": "Set the module key to display",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "command-text",
            "desc": "Set the command text to execute",
            "arg": {
                "type": "str"
            }
        },
        {
            "long": "colors-symbol",
            "desc": "Set the symbol to be printed by the Colors module",
            "arg": {
                "type": "enum",
                "enum": {
                    "block": "\u2588\u2588\u2588",
                    "background": "(whitespaces with background)",
                    "circle": "\u25cf",
                    "diamond": "\u25c6",
                    "triangle": "\u25b2",
                    "square": "\u25a0",
                    "star": "\u2605"
                },
                "default": "background"
            }
        },
        {
            "long": "colors-padding-left",
            "desc": "Set the number of white spaces to print before the symbol",
            "arg": {
                "type": "num",
                "default": 0
            }
        },
        {
            "long": "colors-block-width",
            "desc": "Set the block width in spaces",
            "arg": {
                "type": "num",
                "default": 3
            }
        },
        {
            "long": "colors-block-range-start",
            "desc": "Set the start range of colors in the blocks to print",
            "remark": [
                "Display colors 0-15 in the blocks. (16 colors)",
                "Display colors 0-7 in the blocks. (8 colors)",
                "Only works for `--colors-symbol block`.",
                "Must be in range 0-15",
                "See also `--colors-range-end`"
            ],
            "arg": {
                "type": "num",
                "default": 0
            }
        },
        {
            "long": "colors-block-range-end",
            "desc": "Set the end range of colors in the blocks to print",
            "remark": [
                "Display colors 0-15 in the blocks. (16 colors)",
                "Display colors 0-7 in the blocks. (8 colors)",
                "Only works for `--colors-symbol block`.",
                "Must be in range 0-15",
                "See also `--colors-range-start`"
            ],
            "arg": {
                "type": "num",
                "default": 15
            }
        }
    ],
    "General module": [
        {
            "long": "<module>-format",
            "desc": [
                "Set the format string to use for a specific module",
                "See <https://github.com/fastfetch-cli/fastfetch/wiki/Format-String-Guide>",
                "For help about a specific format string, use \"fastfetch -h <module>-format\""
            ],
            "arg": {
                "type": "format"
            },
            "pseudo": true
        },
        {
            "long": "<module>-key",
            "desc": [
                "Set the key to use for a specific module.",
                "For modules that print multiple lines, the string is parsed",
                "as a format string with the index as the first character"
            ],
            "arg": {
                "type": "key"
            },
            "pseudo": true
        },
        {
            "long": "<module>-key-color",
            "desc": "Override the global \"--color-keys\" option for a specific module",
            "arg": {
                "type": "color"
            },
            "pseudo": true
        },
        {
            "long": "<module>-key-icon",
            "desc": "Set the icon to be displayed by \"--key-type icon\"",
            "arg": {
                "type": "string"
            },
            "pseudo": true
        },
        {
            "long": "<module>-output-color",
            "desc": "Override the global \"--color-output\" option for a specific module",
            "arg": {
                "type": "color"
            },
            "pseudo": true
        },
        {
            "long": "<module>-key-width",
            "desc": "Override the global \"--key-width\" option for a specific module",
            "arg": {
                "type": "num"
            },
            "pseudo": true
        },
        {
            "long": "<module>-percent-green",
            "desc": [
                "Threshold for percentage color ranges",
                "Values less than percent-green will be shown in green"
            ],
            "arg": {
                "type": "num"
            },
            "pseudo": true
        },
        {
            "long": "<module>-percent-yellow",
            "desc": [
                "Threshold for percentage color ranges",
                "Values greater than percent-green and less than percent-yellow will be shown in yellow",
                "Values greater than percent-yellow will be shown in red"
            ],
            "arg": {
                "type": "num"
            },
            "pseudo": true
        },
        {
            "long": "<module>-percent-type",
            "desc": "Set the percentage output type",
            "remark": [
                "0 to use global `--percent-type` value",
                "1 for percentage number",
                "2 for multi-color bar",
                "3 for both",
                "6 for bar only",
                "9 for colored number",
                "10 for monochrome bar"
            ],
            "arg": {
                "type": "num",
                "default": 0
            },
            "pseudo": true
        },
        {
            "long": "<module>-temp-green",
            "desc": [
                "Threshold for temperature color ranges",
                "Values less than temp-green will be shown in green"
            ],
            "arg": {
                "type": "num"
            },
            "pseudo": true
        },
        {
            "long": "<module>-temp-yellow",
            "desc": [
                "Threshold for temperature color ranges",
                "Values greater than temp-green and less than temp-yellow will be shown in yellow",
                "Values greater than temp-yellow will be shown in red"
            ],
            "arg": {
                "type": "num"
            },
            "pseudo": true
        }
    ]
}