fastfetch/presets/examples/16.jsonc 2.1 K raw
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
        "padding": {
7
            "top": 1
8
        }
9
    },
10
    "display": {
11
        "separator": " "
12
    },
13
    "modules": [
14
        {
15
            "key": "╔═══════════╗",
16
            "type": "custom"
17
        },
18
        {
19
            "key": "║ {#31} user    {#keys}║",
20
            "type": "title",
21
            "format": "{user-name}"
22
        },
23
        {
24
            "key": "║ {#32}󰇅 hname   {#keys}║",
25
            "type": "title",
26
            "format": "{host-name}"
27
        },
28
        {
29
            "key": "║ {#33}󰅐 uptime  {#keys}║",
30
            "type": "uptime"
31
        },
32
        {
33
            "key": "║ {#34}{icon} distro  {#keys}║",
34
            "type": "os"
35
        },
36
        {
37
            "key": "║ {#35} kernel  {#keys}║",
38
            "type": "kernel"
39
        },
40
        {
41
            "key": "║ {#36}󰇄 desktop {#keys}║",
42
            "type": "de"
43
        },
44
        {
45
            "key": "║ {#31} term    {#keys}║",
46
            "type": "terminal"
47
        },
48
        {
49
            "key": "║ {#32} shell   {#keys}║",
50
            "type": "shell"
51
        },
52
        {
53
            "key": "║ {#33}󰍛 cpu     {#keys}║",
54
            "type": "cpu",
55
            "showPeCoreCount": true
56
        },
57
        {
58
            "key": "║ {#34}󰉉 disk    {#keys}║",
59
            "type": "disk",
60
            "folders": "/"
61
        },
62
        {
63
            "key": "║ {#35} memory  {#keys}║",
64
            "type": "memory"
65
        },
66
        {
67
            "key": "║ {#36}󰩟 network {#keys}║",
68
            "type": "localip",
69
            "format": "{ipv4} ({ifname})"
70
        },
71
        {
72
            "key": "╠═══════════╣",
73
            "type": "custom"
74
        },
75
        {
76
            "key": "║ {#39} colors  {#keys}║",
77
            "type": "colors",
78
            "symbol": "circle"
79
        },
80
        {
81
            "key": "╚═══════════╝",
82
            "type": "custom"
83
        }
84
    ]
85
}