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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
// I literally was like most of you guys, a dotfiles scavenger, and got this
// config from https://github.com/waytoabv/Dotfiles/blob/main/.config/fastfetch/config.jsonc
// So the credit belongs to "waytoabv"
//
// kitten icat ~/github/dotfiles-latest/fastfetch/images/link-green.webp
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
// If working with tmux, you need to use kitty-icat instead of kitty-direct
// https://discord.com/channels/1005603569187160125/1324828708128821271/1327261766014599218
// "type": "kitty-icat",
"type": "auto",
"height": 20,
"width": 35,
"position": "left",
"padding": {
"top": 4,
"right": 3,
},
},
"display": {
"separator": " ",
},
"modules": [
"break",
{
"type": "custom",
"format": "┌──────────── Hardware ────────────┐",
"outputColor": "cyan",
},
{
"type": "host",
"key": " PC ",
"keyColor": "light_red",
},
{
"type": "cpu",
"key": "│ ├ ",
"keyColor": "red",
},
{
"type": "gpu",
"key": "│ ├ ",
"keyColor": "red",
},
{
"type": "disk",
"key": "│ ├ ",
"folders": "/",
"format": "{size-used} / {size-total} ({size-percentage})",
"keyColor": "red",
},
{
"type": "memory",
"key": "└ └ ",
"keyColor": "red",
},
{
"type": "custom",
"format": "└──────────────────────────────────┘",
"outputColor": "cyan",
},
{
"type": "custom",
"format": "┌──────────── Software ────────────┐",
"outputColor": "cyan",
},
{
"type": "os",
"key": " OS ",
"keyColor": "light_green",
},
{
"type": "kernel",
"key": "│ ├ ",
"keyColor": "green",
},
{
"type": "initsystem",
"key": "│ ├ ",
"keyColor": "green",
},
{
"type": "packages",
"key": "│ ├ ",
"keyColor": "green",
},
{
"type": "localip",
"key": "└ └ ",
"keyColor": "green",
},
{
"type": "lm",
"key": " IN ",
"keyColor": "blue",
},
{
"type": "de",
"key": " DE ",
"keyColor": "blue",
},
{
"type": "wm",
"key": "│ ├ ",
"keyColor": "blue",
},
{
"key": "│ ├ ",
"keyColor": "blue",
"type": "command",
"text": "pgrep dwmblocks &> /dev/null && echo dwmblocks || echo Quartz Compositor",
},
{
"type": "terminal",
"key": "│ ├ ",
"keyColor": "blue",
},
{
"type": "terminalfont",
"key": "└ └ ",
"keyColor": "blue",
},
{
"type": "shell",
"key": "TERM",
"keyColor": "yellow",
},
{
"type": "editor",
"key": "│ ├ ",
"keyColor": "yellow",
},
{
"key": "└ └ ",
"keyColor": "yellow",
"type": "command",
"text": "echo $FILE_MANAGER",
},
{
"type": "custom",
"format": "└──────────────────────────────────┘",
"outputColor": "cyan",
},
{
"type": "custom",
"format": "┌────────── Age / Uptime ──────────┐",
"outputColor": "cyan",
},
{
"type": "command",
"key": " OS Age",
"keyColor": "magenta",
"text": "birth_install=$(stat -c %W /); current=$(date +%s); time_progression=$((current - birth_install)); days_difference=$((time_progression / 86400)); echo $days_difference days",
},
{
"type": "uptime",
"key": " Uptime",
"keyColor": "magenta",
},
{
"type": "custom",
"format": "└──────────────────────────────────┘",
"outputColor": "cyan",
},
],
}
|