From 7b0ea5cbdaaa5b8392777ad207c74cb27411eab1 Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Tue, 1 Oct 2024 17:42:59 -0500 Subject: the big refactor --- common/.config/fastfetch/config.jsonc.org | 92 +++++++++++++++++++++++++++++++ common/.config/fastfetch/config.org | 92 ------------------------------- 2 files changed, 92 insertions(+), 92 deletions(-) create mode 100644 common/.config/fastfetch/config.jsonc.org delete mode 100644 common/.config/fastfetch/config.org (limited to 'common/.config/fastfetch') diff --git a/common/.config/fastfetch/config.jsonc.org b/common/.config/fastfetch/config.jsonc.org new file mode 100644 index 0000000..7a2d099 --- /dev/null +++ b/common/.config/fastfetch/config.jsonc.org @@ -0,0 +1,92 @@ +#+title: Fastfetch Settings +Open a JSON object. +#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes + { +#+end_src + +Use a =sixel= image for the logo. +#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp 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 js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes + "display": { + "separator": " " + }, +#+end_src + +Define the modules in the =fastfetch= display. +#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp 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 js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes +} +#+end_src diff --git a/common/.config/fastfetch/config.org b/common/.config/fastfetch/config.org deleted file mode 100644 index 7a2d099..0000000 --- a/common/.config/fastfetch/config.org +++ /dev/null @@ -1,92 +0,0 @@ -#+title: Fastfetch Settings -Open a JSON object. -#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes - { -#+end_src - -Use a =sixel= image for the logo. -#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp 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 js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes - "display": { - "separator": " " - }, -#+end_src - -Define the modules in the =fastfetch= display. -#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp 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 js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes -} -#+end_src -- cgit v1.2.3