diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-07 23:09:41 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-07 23:09:41 -0500 |
commit | ca3992abceadfa5de5382615437d26797ca3ae0f (patch) | |
tree | f049b27bf7a46bf1e1eabc97d91b9b68e5aaaff7 /config/fastfetch | |
parent | f2da037a89e769b2590d91765e8d0c5a39cf7337 (diff) |
clearer file types
Diffstat (limited to 'config/fastfetch')
-rw-r--r-- | config/fastfetch/config.org | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/fastfetch/config.org b/config/fastfetch/config.org index 3aec5f6..7a2d099 100644 --- a/config/fastfetch/config.org +++ b/config/fastfetch/config.org @@ -1,11 +1,11 @@ #+title: Fastfetch Settings Open a JSON object. -#+begin_src jsonc :tangle yes +#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes { #+end_src Use a =sixel= image for the logo. -#+begin_src jsonc :tangle yes +#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes "logo": { "type": "raw", "source": "~/.config/fastfetch/logo.sixel", @@ -15,14 +15,14 @@ Use a =sixel= image for the logo. #+end_src Two spaces between an item and its key. -#+begin_src jsonc :tangle yes +#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes "display": { "separator": " " }, #+end_src Define the modules in the =fastfetch= display. -#+begin_src jsonc :tangle yes +#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes "modules": [ "title", { @@ -87,6 +87,6 @@ Define the modules in the =fastfetch= display. #+end_src Close the JSON object. -#+begin_src jsonc :tangle yes +#+begin_src js :tangle ~/.config/fastfetch/config.jsonc :mkdirp yes } #+end_src |