From cf71d331f4462c814d6fcd1092e2c7fe119308c8 Mon Sep 17 00:00:00 2001 From: Uyanide Date: Mon, 11 Aug 2025 00:05:45 +0200 Subject: [PATCH] fastfetch --- fastfetch/brief.jsonc | 13 +++++---- fastfetch/config.jsonc | 60 ++++++++++++++++++++++-------------------- 2 files changed, 37 insertions(+), 36 deletions(-) diff --git a/fastfetch/brief.jsonc b/fastfetch/brief.jsonc index 503db8f..d151c80 100644 --- a/fastfetch/brief.jsonc +++ b/fastfetch/brief.jsonc @@ -10,15 +10,14 @@ { "type": "separator" }, { "key": " os", "type": "os" }, { "key": "┠ kernel", "type": "kernel" }, - { "key": "┠ cpu", "type": "cpu" }, - { "key": "┠ gpu", "type": "gpu" }, + { "key": "┠ cpu", "type": "cpu", "format": "{name}" }, + { "key": "┠ gpu", "type": "gpu", "format": "{vendor} {name}" }, { "key": "┖ host", "type": "host" }, { "type": "break" }, - { "key": " wm", "type": "wm" }, - { "key": "┠ de", "type": "de" }, - { "key": "┠ shell", "type": "shell" }, + { "key": "󰆍 shell", "type": "shell" }, { "key": "┠ terminal", "type": "terminal" }, - { "key": "┖ uptime", "type": "uptime" }, - { "type": "break" } + { "key": "┠ wm", "type": "wm" }, + { "key": "┠ de", "type": "de" }, + { "key": "┖ uptime", "type": "uptime" } ] } diff --git a/fastfetch/config.jsonc b/fastfetch/config.jsonc index 2b9b235..e820397 100755 --- a/fastfetch/config.jsonc +++ b/fastfetch/config.jsonc @@ -1,31 +1,33 @@ { - "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", - "display": { - "key": { - // "width": 14 - } - }, - "modules": [ - { "type": "title" }, - { "type": "separator" }, - { "key": " os", "type": "os" }, - { "key": "┠ host", "type": "host" }, - { "key": "┠ kernel", "type": "kernel" }, - { "key": "┠ uptime", "type": "uptime" }, - { "key": "┖ packages", "type": "packages" }, - { "type": "break" }, - { "key": " display", "type": "display" }, - { "key": "┠ de", "type": "de" }, - { "key": "┠ wm", "type": "wm" }, - { "key": "┠ font", "type": "terminalfont" }, - { "key": "┠ shell", "type": "shell" }, - { "key": "┖ terminal", "type": "terminal" }, - { "type": "break" }, - { "key": " cpu", "type": "cpu" }, - { "key": "┠ gpu", "type": "gpu" }, - { "key": "┠ memory", "type": "memory" }, - { "key": "┠ disk", "type": "disk" }, - { "key": "┠ localip", "type": "localip" }, - { "key": "┖ publicip", "type": "publicip" } - ] + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "display": { + "key": { + // "width": 14 + } + }, + "modules": [ + { "type": "title" }, + { "type": "separator" }, + { "key": " os", "type": "os" }, + { "key": "┠ host", "type": "host" }, + { "key": "┠ kernel", "type": "kernel" }, + { "key": "┠ uptime", "type": "uptime" }, + { "key": "┖ packages", "type": "packages" }, + { "type": "break" }, + { "key": "󰆍 shell", "type": "shell" }, + { "key": "┠ display", "type": "display" }, + { "key": "┠ de", "type": "de" }, + { "key": "┠ wm", "type": "wm" }, + { "key": "┠ font", "type": "terminalfont" }, + { "key": "┖ terminal", "type": "terminal" }, + { "type": "break" }, + { "key": " cpu", "type": "cpu" }, + { "key": "┠ gpu", "type": "gpu" }, + { "key": "┠ memory", "type": "memory" }, + { "key": "┠ disk", "type": "disk" }, + { "key": "┠ localip", "type": "localip" }, + { "key": "┖ publicip", "type": "publicip" }, + { "type": "break" }, + { "type": "colors" } + ] }