diff options
-rw-r--r-- | .config/fastfetch/config.jsonc | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/.config/fastfetch/config.jsonc b/.config/fastfetch/config.jsonc new file mode 100644 index 0000000..ee32148 --- /dev/null +++ b/.config/fastfetch/config.jsonc @@ -0,0 +1,71 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "type": "small", + "padding": { + "top": 1 + }, + "color": { + "1": "blue" + } + }, + "display": { + "percent": { + "type": 0 + } + }, + "modules": [ + { + "type": "os", + "key": "os", + "keyColor": "blue" + }, + { + "type": "kernel", + "key": "kernel", + "keyColor": "blue" + }, + { + "type": "uptime", + "key": "up", + "keyColor": "blue" + }, + { + "type": "packages", + "key": "pkgs", + "keyColor": "blue" + }, + { + "type": "shell", + "key": "sh", + "keyColor": "blue" + }, + { + "type": "terminal", + "key": "term", + "keyColor": "blue" + }, + { + "type": "wm", + "key": "wm", + "keyColor": "blue" + }, + { + "type": "cpu", + "key": "cpu", + "keyColor": "blue" + }, + { + "type": "gpu", + "key": "gpu", + "keyColor": "blue", + "hideType": "unknown" + }, + { + "type": "memory", + "key": "ram", + "keyColor": "blue" + }, + "break" + ] +} |