From e56de0a70fb33cc6c37d4618c46a08baae71ecc4 Mon Sep 17 00:00:00 2001 From: utox39 Date: Wed, 28 May 2025 17:37:12 +0200 Subject: [PATCH] chore: add default configuration --- config.json | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 config.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..832629f --- /dev/null +++ b/config.json @@ -0,0 +1,69 @@ +{ + "modules": [ + { + "type": "os", + "key": "OS", + "key_color": "#f5c543" + }, + { + "type": "kernel", + "key": "Kernel", + "key_color": "#f5c543" + }, + { + "type": "uptime", + "key": "Uptime", + "key_color": "#f5c543" + }, + { + "type": "packages", + "key": "Packages", + "key_color": "#f5c543" + }, + { + "type": "shell", + "key": "Shell", + "key_color": "#f5c543" + }, + { + "type": "cpu", + "key": "Cpu", + "key_color": "#f5c543" + }, + { + "type": "gpu", + "key": "Gpu", + "key_color": "#f5c543" + }, + { + "type": "ram", + "key": "Ram", + "key_color": "#f5c543" + }, + { + "type": "swap", + "key": "Swap", + "key_color": "#f5c543" + }, + { + "type": "disk", + "key": "Disk", + "key_color": "#f5c543" + }, + { + "type": "net", + "key": "Local IP", + "key_color": "#f5c543" + }, + { + "type": "terminal", + "key": "Terminal", + "key_color": "#f5c543" + }, + { + "type": "locale", + "key": "Locale", + "key_color": "#f5c543" + } + ] +}