fastfetch/presets/examples/7.jsonc 3.0 K raw
1
// Load with --load-config examples/2.jsonc
2
// Note that you must replace the image path to an existing image to display it.
3
4
{
5
    "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
6
    "logo": {
7
        "padding": {
8
            "top": 2
9
        }
10
    },
11
    "display": {
12
        "separator": " -> "
13
    },
14
    "modules": [
15
        "title",
16
        "separator",
17
        {
18
            "type": "os",
19
            "key": " OS",
20
            "keyColor": "yellow",
21
            "format": "{2}"
22
        },
23
        {
24
            "type": "os",
25
            "key": "├{icon}", // Just get your distro's logo off nerdfonts.com
26
            "keyColor": "yellow"
27
        },
28
        {
29
            "type": "kernel",
30
            "key": "├",
31
            "keyColor": "yellow"
32
        },
33
        {
34
            "type": "packages",
35
            "key": "├󰏖",
36
            "keyColor": "yellow"
37
        },
38
        {
39
            "type": "shell",
40
            "key": "└",
41
            "keyColor": "yellow"
42
        },
43
        "break",
44
45
        {
46
            "type": "wm",
47
            "key": " DE/WM",
48
            "keyColor": "blue"
49
        },
50
        {
51
            "type": "lm",
52
            "key": "├󰧨",
53
            "keyColor": "blue"
54
        },
55
        {
56
            "type": "wmtheme",
57
            "key": "├󰉼",
58
            "keyColor": "blue"
59
        },
60
        {
61
            "type": "icons",
62
            "key": "├󰀻",
63
            "keyColor": "blue"
64
        },
65
        {
66
            "type": "terminal",
67
            "key": "├",
68
            "keyColor": "blue"
69
        },
70
        {
71
            "type": "wallpaper",
72
            "key": "└󰸉",
73
            "keyColor": "blue"
74
        },
75
76
        "break",
77
        {
78
            "type": "host",
79
            "key": "󰌢 PC",
80
            "keyColor": "green"
81
        },
82
        {
83
            "type": "cpu",
84
            "key": "├󰻠",
85
            "keyColor": "green"
86
        },
87
        {
88
            "type": "gpu",
89
            "key": "├󰍛",
90
            "keyColor": "green"
91
        },
92
        {
93
            "type": "disk",
94
            "key": "├",
95
            "keyColor": "green"
96
        },
97
        {
98
            "type": "memory",
99
            "key": "├󰑭",
100
            "keyColor": "green"
101
        },
102
        {
103
            "type": "swap",
104
            "key": "├󰓡",
105
            "keyColor": "green"
106
        },
107
        {
108
            "type": "display",
109
            "key": "├󰍹",
110
            "keyColor": "green"
111
        },
112
        {
113
            "type": "uptime",
114
            "key": "└󰅐",
115
            "keyColor": "green"
116
        },
117
118
        "break",
119
        {
120
            "type": "sound",
121
            "key": " SOUND",
122
            "keyColor": "cyan"
123
        },
124
        {
125
            "type": "player",
126
            "key": "├󰥠",
127
            "keyColor": "cyan"
128
        },
129
        {
130
            "type": "media",
131
            "key": "└󰝚",
132
            "keyColor": "cyan"
133
        },
134
135
        "break",
136
        "colors"
137
    ]
138
}