From 341c3be75228dbd23fd05208d148acecf950d573 Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Wed, 7 Aug 2024 14:58:48 -0500 Subject: initial commit --- config/fastfetch/config.org | 92 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 config/fastfetch/config.org (limited to 'config/fastfetch') diff --git a/config/fastfetch/config.org b/config/fastfetch/config.org new file mode 100644 index 0000000..3aec5f6 --- /dev/null +++ b/config/fastfetch/config.org @@ -0,0 +1,92 @@ +#+title: Fastfetch Settings +Open a JSON object. +#+begin_src jsonc :tangle yes + { +#+end_src + +Use a =sixel= image for the logo. +#+begin_src jsonc :tangle yes + "logo": { + "type": "raw", + "source": "~/.config/fastfetch/logo.sixel", + "width": 40, + "height": 19 + }, +#+end_src + +Two spaces between an item and its key. +#+begin_src jsonc :tangle yes + "display": { + "separator": " " + }, +#+end_src + +Define the modules in the =fastfetch= display. +#+begin_src jsonc :tangle yes + "modules": [ + "title", + { + "type": "custom", + "format": "──────────────────────────────────" + }, + { + "type": "os", + "key": "" + }, + { + "type": "kernel", + "key": "󰞸" + }, + { + "type": "uptime", + "key": "" + }, + { + "type": "packages", + "key": "" + }, + { + "type": "shell", + "key": "" + }, + { + "type": "display", + "key": "󰍹" + }, + { + "type": "wm", + "key": "" + }, + { + "type": "terminal", + "key": "" + }, + { + "type": "cpu", + "key": "" + }, + { + "type": "gpu", + "key": "" + }, + { + "type": "memory", + "key": "" + }, + { + "type": "disk", + "key": "" + }, + { + "type": "locale", + "key": "" + }, + "break", + "colors" + ] +#+end_src + +Close the JSON object. +#+begin_src jsonc :tangle yes +} +#+end_src -- cgit v1.2.3