/ cli / fastfetch / config.jsonc
config.jsonc
 1  {
 2    "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
 3    "logo": {
 4      "source": "$(find \"${XDG_CONFIG_HOME:-$HOME/.config}/fastfetch/pngs/\" -name \"*.png\" | sort -R | head -1)",
 5      "width": 37
 6    },
 7    "display": {
 8      "separator": " : "
 9    },
10    "modules": [
11      // {
12      //   "type": "custom",
13      //   "format": "  \u001b[90m  \u001b[31m  \u001b[32m  \u001b[33m  \u001b[34m  \u001b[35m  \u001b[36m  \u001b[37m "
14      // },
15      {
16        "type": "custom",
17        "format": ""
18      },
19      {
20        "type": "custom",
21        "format": "   Life is long if you know how to use it"
22      },
23      {
24        "type": "custom",
25        "format": ""
26      },
27      {
28        "type": "os",
29        "key": " OS",
30        "keyColor": "38;5;19"  // Dark Blue
31      },
32      {
33        "type": "kernel",
34        "key": " Kernel",
35        "keyColor": "97"  // White
36      },
37      // {
38      //   "type": "display",
39      //   "key": "󱍜 Display",
40      //   "keyColor": "38;5;208"  // Random: Bright Orange
41      // },
42      {
43        "type": "wm",
44        "key": " WM",
45        "keyColor": "38;5;81"  // Light Blue
46      },
47      {
48        "type": "terminal",
49        "key": " Terminal",
50        "keyColor": "90"  // Grey
51      },
52       {
53              "type": "uptime",
54              "key": " Uptime",
55              "keyColor": "34"
56          },
57      "break",
58      {
59        "type": "title",
60        "key": " User",
61        "keyColor": "38;5;250"  // Black
62      },
63      {
64        "type": "custom",
65        "format": ""
66      },
67      {
68        "type": "cpu",
69        "format": "{1}",
70        "key": " CPU",
71        "keyColor": "38;5;118"  // Bright Green
72      },
73      {
74        "type": "gpu",
75        "format": "{2}",
76        "key": " GPU",
77        "keyColor": "38;5;220"  // Yellow
78      },
79      {
80        "type": "gpu",
81        "format": "{3}",
82        "key": " GPU Driver",
83        "keyColor": "38;5;27"  // Cyan
84      },
85      {
86        "type": "custom",
87        "format": ""
88      }
89     // "break",
90      // {
91      //   "type": "custom",
92      //   "format": "  \u001b[90m  \u001b[31m  \u001b[32m  \u001b[33m  \u001b[34m  \u001b[35m  \u001b[36m  \u001b[37m "
93      // },
94      // "break"
95    ]
96  }