diff options
Diffstat (limited to '.config/fastfetch/config.jsonc')
| -rw-r--r-- | .config/fastfetch/config.jsonc | 38 |
1 files changed, 26 insertions, 12 deletions
diff --git a/.config/fastfetch/config.jsonc b/.config/fastfetch/config.jsonc index 46175bc..1651d66 100644 --- a/.config/fastfetch/config.jsonc +++ b/.config/fastfetch/config.jsonc @@ -4,48 +4,62 @@ "source": "none", "type": "builtin", }, - "display": { - "separator": ": ", - "key": { - "width": 11, + "separator": " ", + "size": { + "spaceBeforeUnit": "always", }, }, - "modules": [ { + "type": "custom", + "key": "╭──────────╮", + "keyColor": "#FFB6C1", + }, + { "type": "kernel", - "key": "kernel", + "key": "│ kernel │", "keyColor": "#FFB6C1", + "format": "{release}", }, { "type": "wm", - "key": "wm", + "key": "│ wm │", "keyColor": "#FFB6C1", + "format": "{pretty-name}", }, { "type": "uptime", - "key": "uptime", + "key": "│ uptime │", "keyColor": "#FFB6C1", }, { "type": "shell", - "key": "shell", + "key": "│ shell │", "keyColor": "#FFB6C1", + "format": "{pretty-name}", }, { "type": "terminal", - "key": "terminal", + "key": "│ term │", "keyColor": "#FFB6C1", + "format": "{pretty-name}", }, { "type": "cpu", - "key": "cpu", + "key": "│ cpu │", "keyColor": "#FFB6C1", + "format": "{name}", }, { "type": "memory", - "key": "memory", + "key": "│ memory │", + "keyColor": "#FFB6C1", + "format": "{used} / {total}", + }, + { + "type": "custom", + "key": "╰──────────╯", "keyColor": "#FFB6C1", }, ], |
