chore: Added missing fastfetch example b7264db3
Steve · 2025-06-02 20:48 1 file(s) · +88 −0
fastfetch/presets/examples/14.jsonc (added) +88 −0
1 +
// Inspired by Catnap
2 +
{
3 +
    "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
4 +
    "logo": {
5 +
        "type": "small"
6 +
    },
7 +
    "display": {
8 +
        "separator": "",
9 +
        "key": {
10 +
            "width": 15
11 +
        }
12 +
    },
13 +
    "modules": [
14 +
        {
15 +
            // draw borders first to make colors of left and right border consistant
16 +
            "key": " user",
17 +
            "type": "title",
18 +
            "format": "{user-name}",
19 +
            "keyColor": "31"
20 +
        },
21 +
        {
22 +
            "key": "󰇅 hname",
23 +
            "type": "title",
24 +
            "format": "{host-name}",
25 +
            "keyColor": "32"
26 +
27 +
        },
28 +
        {
29 +
            "key": "󰅐 uptime",
30 +
            "type": "uptime",
31 +
            "keyColor": "33"
32 +
        },
33 +
        {
34 +
            "key": "{icon} distro",
35 +
            "type": "os",
36 +
            "keyColor": "34"
37 +
        },
38 +
        {
39 +
            "key": " kernel",
40 +
            "type": "kernel",
41 +
            "keyColor": "35"
42 +
        },
43 +
        {
44 +
            "key": "󰇄 desktop",
45 +
            "type": "de",
46 +
            "keyColor": "36"
47 +
        },
48 +
        {
49 +
            "key": " term",
50 +
            "type": "terminal",
51 +
            "keyColor": "31"
52 +
        },
53 +
        {
54 +
            "key": " shell",
55 +
            "type": "shell",
56 +
            "keyColor": "32"
57 +
        },
58 +
        {
59 +
            "key": "󰍛 cpu",
60 +
            "type": "cpu",
61 +
            "showPeCoreCount": true,
62 +
            "keyColor": "33"
63 +
        },
64 +
        {
65 +
            "key": "󰉉 disk",
66 +
            "type": "disk",
67 +
            "folders": "/",
68 +
            "keyColor": "34"
69 +
        },
70 +
        {
71 +
            "key": " memory",
72 +
            "type": "memory",
73 +
            "keyColor": "35"
74 +
        },
75 +
        {
76 +
            "key": "󰩟 network",
77 +
            "type": "localip",
78 +
            "format": "{ipv4} ({ifname})",
79 +
            "keyColor": "36"
80 +
        },
81 +
        {
82 +
            "key": " colors",
83 +
            "type": "colors",
84 +
            "symbol": "circle",
85 +
            "keyColor": "39"
86 +
        }
87 +
    ]
88 +
}