-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.jsonc
71 lines (70 loc) · 1.89 KB
/
config.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"padding": {
"top": 1
}
},
"display": {
"separator": " "
},
"modules": [
"break",
{
"type": "os",
"key": " DISTRO",
"keyColor": "yellow"
},
{
"type": "command",
"key": "│ ├ INSTALL AGE",
"keyColor": "yellow",
"text": "birth_install=$(stat -c %W /); current=$(date +%s); time_progression=$((current - birth_install)); days_difference=$((time_progression / 86400)); echo $days_difference days"
},
{
"type": "terminalfont",
"key": "│ ├ TERMINAL FONT",
"keyColor": "blue"
},
{
"type": "terminal",
"key": "│ └ TERMINAL",
"keyColor": "blue",
"format": "{1}"
},
{
"type": "host",
"key": " SYSTEM",
"keyColor": "green"
},
{
"type": "cpu",
"key": "│ ├ CPU",
"keyColor": "green",
"text": "cat /proc/cpuinfo | grep 'model name' | head -1 | awk -F ': ' '{print $2}' | sed 's/ (.*)//'"
},
{
"type": "gpu",
"key": "│ ├ GPU",
"format": "{2}",
"keyColor": "green"
},
{
"type": "display",
"key": "│ ├ DISPLAY",
"keyColor": "green",
"compactType": "original-with-refresh-rate"
},
{
"type": "memory",
"key": "│ ├ MEMORY",
"keyColor": "green"
},
{
"type": "uptime",
"key": "│ ├ UPTIME",
"keyColor": "green"
},
"break"
]
}