- Optimized assets/branding/icon.txt with multi-color placeholders for fastfetch. - Updated config/fastfetch/config.jsonc to use the new multi-colored icon. - Added icon and svg branding assets to modules/home/theme-files.nix. - Fixed 'Nnomarchy' typo to 'Nomarchy' and updated branding paths in several scripts. - Corrected screensaver and welcome scripts to use the centralized branding assets.
138 lines
3.5 KiB
JSON
138 lines
3.5 KiB
JSON
{
|
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
|
"logo": {
|
|
"type": "file",
|
|
"source": "~/.config/nomarchy/branding/icon.txt",
|
|
"color": { "1": "green", "2": "blue" },
|
|
"padding": {
|
|
"top": 2,
|
|
"right": 6,
|
|
"left": 2
|
|
}
|
|
},
|
|
"modules": [
|
|
"break",
|
|
{
|
|
"type": "custom",
|
|
"format": "\u001b[90m┌──────────────────────Hardware──────────────────────┐"
|
|
},
|
|
{
|
|
"type": "host",
|
|
"key": " PC",
|
|
"keyColor": "green"
|
|
},
|
|
{
|
|
"type": "cpu",
|
|
"key": "│ ├",
|
|
"showPeCoreCount": true,
|
|
"keyColor": "green"
|
|
},
|
|
{
|
|
"type": "gpu",
|
|
"key": "│ ├",
|
|
"detectionMethod": "pci",
|
|
"keyColor": "green"
|
|
},
|
|
{
|
|
"type": "display",
|
|
"key": "│ ├",
|
|
"keyColor": "green"
|
|
},
|
|
{
|
|
"type": "disk",
|
|
"key": "│ ├",
|
|
"keyColor": "green"
|
|
},
|
|
{
|
|
"type": "memory",
|
|
"key": "│ ├",
|
|
"keyColor": "green"
|
|
},
|
|
{
|
|
"type": "swap",
|
|
"key": "└ └ ",
|
|
"keyColor": "green"
|
|
},
|
|
{
|
|
"type": "custom",
|
|
"format": "\u001b[90m└────────────────────────────────────────────────────┘"
|
|
},
|
|
"break",
|
|
{
|
|
"type": "custom",
|
|
"format": "\u001b[90m┌──────────────────────Software──────────────────────┐"
|
|
},
|
|
{
|
|
"type": "os",
|
|
"key": "\ue900 OS",
|
|
"keyColor": "blue"
|
|
},
|
|
{
|
|
"type": "kernel",
|
|
"key": "│ ├",
|
|
"keyColor": "blue"
|
|
},
|
|
{
|
|
"type": "wm",
|
|
"key": "│ ├",
|
|
"keyColor": "blue"
|
|
},
|
|
{
|
|
"type": "de",
|
|
"key": " DE",
|
|
"keyColor": "blue"
|
|
},
|
|
{
|
|
"type": "terminal",
|
|
"key": "│ ├",
|
|
"keyColor": "blue"
|
|
},
|
|
{
|
|
"type": "packages",
|
|
"key": "│ ├",
|
|
"keyColor": "blue"
|
|
},
|
|
{
|
|
"type": "wmtheme",
|
|
"key": "│ ├",
|
|
"keyColor": "blue"
|
|
},
|
|
{
|
|
"type": "command",
|
|
"key": "│ ├",
|
|
"keyColor": "blue",
|
|
"text": "theme=$(cat ~/.config/nomarchy/current/theme.name); echo -e \"$theme \\e[38m●\\e[37m●\\e[36m●\\e[35m●\\e[34m●\\e[33m●\\e[32m●\\e[31m●\""
|
|
},
|
|
{
|
|
"type": "terminalfont",
|
|
"key": "└ └",
|
|
"keyColor": "blue"
|
|
},
|
|
{
|
|
"type": "custom",
|
|
"format": "\u001b[90m└────────────────────────────────────────────────────┘"
|
|
},
|
|
"break",
|
|
{
|
|
"type": "custom",
|
|
"format": "\u001b[90m┌────────────────Age / Uptime / Update───────────────┐"
|
|
},
|
|
{
|
|
"type": "command",
|
|
"key": " OS Age",
|
|
"keyColor": "magenta",
|
|
"text": "echo $(( ($(date +%s) - $(stat -c %W /)) / 86400 )) days"
|
|
},
|
|
{
|
|
"type": "uptime",
|
|
"key": " Uptime",
|
|
"keyColor": "magenta"
|
|
},
|
|
{
|
|
"type": "custom",
|
|
"format": "\u001b[90m└────────────────────────────────────────────────────┘"
|
|
},
|
|
"break"
|
|
]
|
|
}
|