From a68846e27916d7f29173accbf94e38a5a19d9b0c Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Fri, 14 Aug 2026 12:00:14 +0200 Subject: [PATCH] Add configuration for `fastfetch` --- .config/fastfetch/config.jsonc | 47 ++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .config/fastfetch/config.jsonc diff --git a/.config/fastfetch/config.jsonc b/.config/fastfetch/config.jsonc new file mode 100644 index 0000000..9a8b8c4 --- /dev/null +++ b/.config/fastfetch/config.jsonc @@ -0,0 +1,47 @@ +// Config for `fastfetch` +// +// See: https://github.com/fastfetch-cli/fastfetch + +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + + "logo": { + "type": "small", + "padding": { + "top": 1, + "right": 4 + } + }, + + "display": { + "separator": " ", + "key": { + "width": 12 + } + }, + + "modules": [ + "title", + "separator", + + "os", + "kernel", + "uptime", + "packages", + "shell", + + "break", + + "cpu", + "memory", + { + "type": "disk", + "folders": "/" + }, + "localip", + + "break", + + "colors" + ] +}