-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfastfetch.template.jsonc
More file actions
115 lines (108 loc) · 5.1 KB
/
Copy pathfastfetch.template.jsonc
File metadata and controls
115 lines (108 loc) · 5.1 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
// ═══════════════════════════════════════════════════════════════════════════
// Rosé Pine fastfetch — base dark variant (#191724), not Moon, not Dawn
//
// Palette (as ANSI truecolor SGR fragments):
// text 224;222;244 foam 156;207;216 gold 246;193;119
// rose 235;188;186 love 235;111;146 iris 196;167;231
// subtle 144;140;170 hlMed 64;61;82 pine 49;116;143
//
// INK RULE — pine (49;116;143) is 3.3:1 on the base background, so it is
// never used as foreground here. foam is dark-mode's readable teal (10.3:1).
// The old config used pine for the title and host; both were washed out.
//
// SLIM RULE — this list is deliberately short. Anything printed on every
// single shell launch has to earn its line; WM/Theme/Cursor/Font/Swap/Locale
// never changed between logins, so they are gone. `fastfetch -c all` still
// prints everything on demand.
// ═══════════════════════════════════════════════════════════════════════════
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
// Rainbow cross logo, generated by `crossfetch --logo > cross.txt`.
// "file-raw" prints the file's bytes verbatim so the embedded ANSI
// truecolor survives. Regenerate after editing the art in crossfetch.
"logo": {
"type": "file-raw",
"source": "/Users/daemon1/.config/fastfetch/cross.txt",
"padding": {
"top": 1,
"right": 4
}
},
"display": {
"separator": " ",
"color": {
"keys": "{{gold}}",
"title": "{{foam}}",
"output": "{{text}}",
"separator": "{{subtle}}"
},
"key": {
"width": 13
},
// Number + colored bar for every %-based module (memory/disk/battery…).
"percent": {
"type": 11,
"green": 50,
"yellow": 80,
// fastfetch's built-in green/yellow/red are the terminal's ANSI
// slots, which this theme has remapped to pine/gold/love — pine
// reads as a murky teal at 50%. Pin truecolor instead.
"color": {
"green": "{{foam}}",
"yellow": "{{gold}}",
"red": "{{love}}"
}
},
"bar": {
"char": {
"elapsed": "━",
"total": "─"
},
"width": 12,
"border": {
"left": " ",
"right": ""
},
// Unfilled track sits at highlightMed so the bar reads as a
// groove, not as a second competing value.
"color": {
"total": "{{highlightMed}}"
}
}
},
"modules": [
{
"type": "title",
"color": {
"user": "{{gold}}",
"at": "{{love}}",
"host": "{{foam}}"
}
},
"separator",
{"type": "custom", "format": " ╶─── system ───────────────────╴", "outputColor": "{{subtle}}"},
{"type": "os", "key": " OS", "keyColor": "{{gold}}"},
{"type": "host", "key": " Host", "keyColor": "{{rose}}"},
{"type": "uptime", "key": " Uptime", "keyColor": "{{gold}}"},
{"type": "packages", "key": " Packages", "keyColor": "{{rose}}"},
{"type": "shell", "key": " Shell", "keyColor": "{{gold}}"},
"break",
{"type": "custom", "format": " ╶─── hardware ─────────────────╴", "outputColor": "{{subtle}}"},
{"type": "cpu", "key": " CPU", "keyColor": "{{gold}}", "temp": true},
{"type": "gpu", "key": " GPU", "keyColor": "{{rose}}"},
{"type": "memory", "key": " Memory", "keyColor": "{{gold}}"},
// Short format: bar + used/total + %. The default appends
// "- apfs [External, Read-only]", which wraps next to the wide logo.
{"type": "disk", "key": " Disk", "keyColor": "{{rose}}",
"format": "{size-percentage-bar} {size-used} / {size-total} ({size-percentage})"},
{"type": "battery", "key": " Battery", "keyColor": "{{gold}}"},
"break",
{"type": "custom", "format": " ╶─── session ──────────────────╴", "outputColor": "{{subtle}}"},
{"type": "terminal", "key": " Terminal", "keyColor": "{{gold}}"},
{"type": "terminalfont", "key": " TermFont", "keyColor": "{{rose}}"},
{"type": "display", "key": " Display", "keyColor": "{{gold}}"},
{"type": "localip", "key": " Local IP", "keyColor": "{{rose}}"},
"break",
{"type": "colors", "symbol": "circle", "paddingLeft": 2}
]
}