diff options
| author | 2026-02-21 14:54:14 -0500 | |
|---|---|---|
| committer | 2026-02-21 14:54:14 -0500 | |
| commit | d9be77d6429d598f3ec7eead1620c33556b7c865 (patch) | |
| tree | e5537c045d868e7a65147a69746ec173a217d327 /fastfetch/config.jsonc | |
initial commit
Diffstat (limited to 'fastfetch/config.jsonc')
| -rw-r--r-- | fastfetch/config.jsonc | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/fastfetch/config.jsonc b/fastfetch/config.jsonc new file mode 100644 index 0000000..c3926dc --- /dev/null +++ b/fastfetch/config.jsonc @@ -0,0 +1,82 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json", + "display": { + "key": { + "width": 10 + }, + "size": { + "binaryPrefix": "jedec" + }, + "separator": "" + }, + "logo": { + "source": "~/.config/fastfetch/logo.txt", + "type": "file", + "padding": { + "top": 1, + "left": 2 + } + }, + "modules": [ + "break", + { + "type": "os", + "key": "os", + "keyColor": "yellow", + "format": "{name}" + }, + { + "type": "kernel", + "key": "ker", + "keyColor": "green" + }, + { + "type": "packages", + "key": "pkgs", + "keyColor": "cyan" + }, + { + "type": "shell", + "key": "sh", + "keyColor": "blue", + "format": "{pretty-name}" + }, + { + "type": "wm", + "key": "wm", + "keyColor": "red", + "format": "{pretty-name}" + }, + { + "type": "uptime", + "key": "up", + "keyColor": "green" + }, + { + "type": "cpu", + "key": "cpu", + "keyColor": "red", + "format": "{name}" + }, + { + "type": "memory", + "key": "ram", + "keyColor": "yellow", + "format": "{used} / {total}" + }, + { + "type": "disk", + "key": "disk", + "keyColor": "cyan", + "folders": [ + "/" + ], + "format": "{size-used} / {size-total}" + }, + "break", + { + "type": "custom", + "format": "\u001b[33mᗢ \u001b[32mᗢ \u001b[34mᗢ \u001b[31mᗢ \u001b[36mᗢ \u001b[35mᗢ \u001b[37mᗢ \u001b[97mᗢ" + } + ] +} |
