From 888da63c549415bc4f97be407cf3a5e8be14d2b1 Mon Sep 17 00:00:00 2001 From: frosty Date: Sun, 25 Aug 2024 01:54:41 -0400 Subject: [PATCH] fastfetch: redo --- .config/fastfetch/config.jsonc | 59 +++++++++++++++++++++------------- 1 file changed, 36 insertions(+), 23 deletions(-) diff --git a/.config/fastfetch/config.jsonc b/.config/fastfetch/config.jsonc index 013da64..b30af5d 100644 --- a/.config/fastfetch/config.jsonc +++ b/.config/fastfetch/config.jsonc @@ -1,25 +1,38 @@ { - "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", - "modules": [ - "title", - "separator", - "os", - "host", - "kernel", - "uptime", - "packages", - "shell", - "display", - "de", - "wm", - "wmtheme", - "cursor", - "terminal", - "terminalfont", - "cpu", - "gpu", - "memory", - "break", - "colors" - ] + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "modules": [ + "title", + "separator", + { + "type": "os", + "format": "{3}" + }, + { + "type": "host", + "format": "{2}" + }, + { + "type": "kernel", + "format": "{2}" + }, + "uptime", + { + "type": "packages", + "format": "{1}" + }, + { + "type": "shell", + "format": "{1}" + }, + "display", + "wm", + "terminal", + "cpu", + "gpu", + "memory", + "swap", + "disk", + "break", + "colors" + ] }