fastfetch/presets/examples/18.jsonc 2.3 K raw
1
{
2
    "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
3
    "logo": {
4
        "type": "small",
5
        "padding": {
6
            "top": 1,
7
            "right": 2
8
        }
9
    },
10
    "display": {
11
        "separator": ">  ",
12
        "color": {
13
            "separator": "red"
14
        },
15
        "constants": [
16
            "═══════════════════════════════════════════════════════════════════════════",
17
            "║\u001b[75C║\u001b[75D"
18
        ]
19
    },
20
    "modules": [
21
        {
22
            "format": "{#1}{#keys}╔{$1}╗\u001b[76D {user-name-colored}{at-symbol-colored}{host-name-colored} 💻 ",
23
            "type": "title"
24
        },
25
        {
26
            "key": "{$2}{#31} kernel   ",
27
            "type": "kernel"
28
        },
29
        {
30
            "key": "{$2}{#32}󰅐 uptime   ",
31
            "type": "uptime"
32
        },
33
        {
34
            "key": "{$2}{#33}{icon} distro   ",
35
            "type": "os"
36
        },
37
        {
38
            "key": "{$2}{#34}󰇄 desktop  ",
39
            "type": "de"
40
        },
41
        {
42
            "key": "{$2}{#35} term     ",
43
            "type": "terminal"
44
        },
45
        {
46
            "key": "{$2}{#36} shell    ",
47
            "type": "shell"
48
        },
49
        {
50
            "key": "{$2}{#35}󰍛 cpu      ",
51
            "type": "cpu",
52
            "showPeCoreCount": true,
53
            "temp": true
54
        },
55
        {
56
            "key": "{$2}{#34}󰍛 gpu      ",
57
            "type": "gpu"
58
        },
59
        {
60
            "key": "{$2}{#33}󰉉 disk     ",
61
            "type": "disk",
62
            "folders": "/"
63
        },
64
        {
65
            "key": "{$2}{#32} memory   ",
66
            "type": "memory"
67
        },
68
        {
69
            "key": "{$2}{#31}󰩟 network  ",
70
            "type": "localip",
71
            "format": "{ipv4} ({ifname})"
72
        },
73
        {
74
            "format": "{#1}{#keys}╠{$1}╣",
75
            "type": "custom"
76
        },
77
        {
78
            "key": "{$2}{#39} colors   ",
79
            "type": "colors",
80
            "symbol": "circle"
81
        },
82
        {
83
            "format": "{#1}{#keys}╚{$1}╝",
84
            "type": "custom"
85
        }
86
    ]
87
}