diff options
Diffstat (limited to '.config/fastfetch/config.jsonc')
| -rw-r--r-- | .config/fastfetch/config.jsonc | 40 |
1 files changed, 39 insertions, 1 deletions
diff --git a/.config/fastfetch/config.jsonc b/.config/fastfetch/config.jsonc index a61665b..5c024f8 100644 --- a/.config/fastfetch/config.jsonc +++ b/.config/fastfetch/config.jsonc @@ -4,11 +4,49 @@ "source": "none", "type": "builtin", }, + "display": { "separator": ": ", "key": { "width": 11, }, }, - "modules": ["os", "kernel", "uptime", "shell", "terminal", "cpu", "memory"], + + "modules": [ + { + "type": "kernel", + "key": "kernel", + "keyColor": "red", + }, + { + "type": "wm", + "key": "wm", + "keyColor": "red", + }, + { + "type": "uptime", + "key": "uptime", + "keyColor": "red", + }, + { + "type": "shell", + "key": "shell", + "keyColor": "red", + }, + { + "type": "terminal", + "key": "terminal", + "keyColor": "red", + }, + { + "type": "cpu", + "key": "cpu", + "keyColor": "red", + }, + { + "type": "memory", + "key": "memory", + "keyColor": "red", + }, + ], } |
