From 50850df77f2d1603ff21d55d97d20191664290fb Mon Sep 17 00:00:00 2001 From: nikurasu Date: Wed, 31 Jan 2024 18:30:44 +0100 Subject: [PATCH] feat(fastfetch): add config Add fastfetch configuration file --- fastfetch/config.jsonc | 94 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 fastfetch/config.jsonc diff --git a/fastfetch/config.jsonc b/fastfetch/config.jsonc new file mode 100644 index 0000000..6699944 --- /dev/null +++ b/fastfetch/config.jsonc @@ -0,0 +1,94 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "width": 28 + }, + "display": { + "separator": "  ", + "color": { + "keys": "bright_cyan" + } + }, + "modules": [ + { + "type": "custom", + "format": "┌──────────────── \u001B[1mHardware Information\u001B[0m ────────────────┐" + }, + { + "type": "host", + "key": " 󰌢" + }, + { + "type": "cpu", + "key": " " + }, + { + "type": "gpu", + "key": " " + }, + { + "type": "disk", + "key": " 󰋊" + }, + { + "type": "memory", + "key": " 󰆋" + }, + { + "type": "custom", + "format": "├──────────────── \u001B[1mSoftware Information\u001B[0m ────────────────┤" + }, + { + "type": "os", + "key": " " + }, + { + "type": "kernel", + "key": " " + }, + { + "type": "users", + "key": " " + }, + { + "type": "de", + "key": " " + }, + { + "type": "wm", + "key": " " + }, + { + "type": "theme", + "key": " 󰃣" + }, + { + "type": "shell", + "key": " " + }, + { + "type": "terminal", + "key": " " + }, + { + "type": "terminalfont", + "key": " " + }, + { + "type": "packages", + "key": " 󰏗" + }, + { + "type": "uptime", + "key": " 󰅐" + }, + { + "type": "custom", + "format": "└──────────────────────────────────────────────────────┘" + }, + { + "type": "custom", + "format": " \u001B[38m \u001B[37m \u001B[36m \u001B[35m \u001B[34m \u001B[33m \u001B[32m \u001B[31m \u001B[30m" + } + ] +}