fastfetch/presets/examples/4.jsonc 689 B raw
1
// Load with --load-config examples/4.jsonc
2
3
{
4
    "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
5
    "logo": {
6
        "type": "small",
7
        "padding": {
8
            "right": 1
9
        }
10
    },
11
    "display": {
12
        "size": {
13
            "binaryPrefix": "si"
14
        },
15
        "color": "blue",
16
        "separator": "  "
17
    },
18
    "modules": [
19
        {
20
            "type": "datetime",
21
            "key": "Date",
22
            "format": "{1}-{3}-{11}"
23
        },
24
        {
25
            "type": "datetime",
26
            "key": "Time",
27
            "format": "{14}:{17}:{20}"
28
        },
29
        "break",
30
        "player",
31
        "media"
32
    ]
33
}