🎨 ux(fastfetch): change icons and colors

This commit is contained in:
Sergio Laín 2024-07-29 20:39:27 +02:00
parent 39213963f0
commit e72686a722
No known key found for this signature in database
GPG key ID: 8429B2EE312F8150

View file

@ -2,90 +2,93 @@
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": { "logo": {
"source": "$XDG_CONFIG_HOME/fastfetch/logo.png", "source": "$XDG_CONFIG_HOME/fastfetch/logo.png",
"height": 18 "height": 18,
}, },
"display": { "display": {
"separator": " ➜ " "separator": " ➜ ",
"color": "white",
}, },
"modules": [ "modules": [
{ {
"type": "custom", "type": "custom",
"format": "┌──────────── Hardware Information ────────────┐" "format": "┌──────────── Hardware Information ────────────┐",
}, },
{ {
"type": "cpu", "type": "cpu",
"key": "  CPU", "key": "  CPU",
"keyColor": "blue" "keyColor": "blue",
}, },
{ {
"type": "board", "type": "board",
"key": "  Board" "key": "  Board",
"keyColor": "magenta",
}, },
{ {
"type": "gpu", "type": "gpu",
"key": " 󰛇 GPU" "format": "{2} {3}",
}, "key": " 󰛇 GPU",
{ "keyColor": "yellow",
"type": "gpu",
"format": "{3}",
"key": "  GPU Driver",
"keyColor": "magenta"
}, },
{ {
"type": "memory", "type": "memory",
"key": " Memory", "key": "  Memory",
"keyColor": "magenta" "keyColor": "green",
}, },
{ {
"type": "display", "type": "display",
"key": " Display", "key": " 󰍹 Display",
"keyColor": "green", "keyColor": "cyan",
"compactType": "original" "compactType": "original",
}, },
"break", "break",
{ {
"type": "custom", "type": "custom",
"format": "├──────────── Software Information ────────────┤" "format": "├──────────── Software Information ────────────┤",
}, },
{ {
"type": "os", "type": "os",
"key": "  OS", "key": "  OS",
"keyColor": "red" "keyColor": "blue",
}, },
{ {
"type": "kernel", "type": "kernel",
"key": " Kernel", "key": " Kernel",
"keyColor": "red" "keyColor": "red",
}, },
{ {
"type": "shell", "type": "shell",
"key": " Shell", "key": " Shell",
"keyColor": "magenta" "keyColor": "magenta",
}, },
{ {
"type": "wm", "type": "wm",
"key": " WM", "key": "  WM",
"keyColor": "yellow" "keyColor": "cyan",
}, },
{ {
"type": "terminal", "type": "terminal",
"key": "  Terminal", "key": "  Terminal",
"keyColor": "yellow" "keyColor": "yellow",
}, },
{ {
"type": "packages", "type": "packages",
"key": "  Packages", "key": "  Packages",
"keyColor": "green" "keyColor": "green",
},
{
"type": "uptime",
"key": " 󱫐 Uptime",
"keyColor": "white",
}, },
{ {
"type": "custom", "type": "custom",
"format": "└──────────────────────────────────────────────┘" "format": "└──────────────────────────────────────────────┘",
}, },
"break", "break",
{ {
"type": "colors", "type": "colors",
"symbol": "block", "symbol": "block",
"paddingLeft": 11 "paddingLeft": 12,
} },
] ],
} }