-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.jsonc
More file actions
138 lines (125 loc) · 3.89 KB
/
config.jsonc
File metadata and controls
138 lines (125 loc) · 3.89 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"source": "$HOME/.config/fastfetch/ascii.txt",
"padding": { "top": 1, "left": 2, "right": 4 },
"type": "auto",
"height": 16,
"width": 28
},
"display": {
"separator": " ",
"color": {
"title": "38;2;80;200;255"
}
},
"modules": [
"break",
{
"type": "title",
"format": " \u001b[38;2;80;200;255m{user} \u001b[38;2;100;100;100m@ \u001b[38;2;120;255;180m{host-name}"
},
"break",
{
"type": "custom",
"format": "\u001b[38;2;80;200;255m╭─ Hardware"
},
{
"type": "host",
"key": "\u001b[38;2;80;200;255m├─ \u001b[38;2;120;255;180m Host",
"keyColor": "default"
},
{
"type": "cpu",
"key": "\u001b[38;2;80;200;255m├─ \u001b[38;2;120;255;180m CPU ",
"keyColor": "default"
},
{
"type": "gpu",
"key": "\u001b[38;2;80;200;255m├─ \u001b[38;2;120;255;180m GPU ",
"keyColor": "default"
},
{
"type": "disk",
"key": "\u001b[38;2;80;200;255m├─ \u001b[38;2;120;255;180m Disk",
"keyColor": "default"
},
{
"type": "memory",
"key": "\u001b[38;2;80;200;255m╰─ \u001b[38;2;120;255;180m Mem ",
"keyColor": "default"
},
"break",
{
"type": "custom",
"format": "\u001b[38;2;80;200;255m╭─ Software"
},
{
"type": "os",
"key": "\u001b[38;2;80;200;255m├─ \u001b[38;2;120;255;180m OS ",
"keyColor": "default"
},
{
"type": "kernel",
"key": "\u001b[38;2;80;200;255m├─ \u001b[38;2;120;255;180m Kern",
"keyColor": "default"
},
{
"type": "packages",
"key": "\u001b[38;2;80;200;255m├─ \u001b[38;2;120;255;180m Pkgs",
"format": "{all}",
"keyColor": "default"
},
{
"type": "shell",
"key": "\u001b[38;2;80;200;255m╰─ \u001b[38;2;120;255;180m Shell",
"keyColor": "default"
},
"break",
{
"type": "custom",
"format": "\u001b[38;2;80;200;255m╭─ Desktop"
},
{
"type": "de",
"key": "\u001b[38;2;80;200;255m├─ \u001b[38;2;120;255;180m DE ",
"keyColor": "default"
},
{
"type": "wm",
"key": "\u001b[38;2;80;200;255m├─ \u001b[38;2;120;255;180m WM ",
"keyColor": "default"
},
{
"type": "terminal",
"key": "\u001b[38;2;80;200;255m╰─ \u001b[38;2;120;255;180m Term",
"keyColor": "default"
},
"break",
{
"type": "custom",
"format": "\u001b[38;2;80;200;255m╭─ Time"
},
{
"type": "command",
"key": "\u001b[38;2;80;200;255m├─ \u001b[38;2;120;255;180m Age ",
"keyColor": "default",
"text": "birth=$(stat -c %W / 2>/dev/null || echo 0); if [ \"$birth\" -eq 0 ]; then echo \"Unknown\"; else now=$(date +%s); diff=$((now - birth)); days=$((diff/86400)); echo \"$days days\"; fi"
},
{
"type": "uptime",
"key": "\u001b[38;2;80;200;255m╰─ \u001b[38;2;120;255;180m Up ",
"keyColor": "default"
},
"break",
{
"type": "colors",
"symbol": "star",
"paddingLeft": 0,
"block": {
"range": [2, 6]
}
},
"break"
]
}