fastfetch/presets/examples/23.jsonc 1.5 K raw
1
// designed for presenting Vanilla Linux
2
// inspired from imstilllearnin's Vanilla Logo Ultra
3
{
4
    "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
5
    "logo": {
6
        "type": "small"
7
    },
8
    "display": {
9
        "color": {
10
            "output": "cyan"
11
        },
12
        "separator": ""
13
    },
14
    "modules": [
15
        {
16
            "type": "kernel",
17
            "key": "[_Kernel___> ",
18
            "keyColor": "blue"
19
        },
20
        {
21
            "type": "packages",
22
            "outputColor": "white",
23
            "key": " [_Packages_> ",
24
            "keyColor": "green"
25
        },
26
        {
27
            "type": "localip",
28
            "outputColor": "white",
29
            "key": " [_Local_IP_> ",
30
            "keyColor": "green"
31
        },
32
        {
33
            "type": "memory",
34
            "format": "[{3}] {1} / {2}",
35
            "key": " [_RAM______> ",
36
            "keyColor": "magenta"
37
        },
38
        {
39
            "type": "swap",
40
            "format": "[{3}] {1} / {2}",
41
            "key": " [_SWAP_____> ",
42
            "keyColor": "magenta"
43
        },
44
        {
45
            "type": "disk",
46
            "format": "[{3}] {1} / {2} {9}",
47
            "key": " [_Disk_____> ",
48
            "keyColor": "magenta"
49
        },
50
        {
51
            "type": "battery",
52
            "format": "[{4}] {5}",
53
            "key": " [_Battery__> ",
54
            "keyColor": "magenta"
55
        },
56
        "break",
57
        {
58
            "type": "colors",
59
            "paddingLeft": 9,
60
            "symbol": "circle"
61
        }
62
    ]
63
}