aboutsummaryrefslogtreecommitdiff
path: root/gentoo/.config/fastfetch
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-08-09 20:48:10 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-08-09 20:48:10 -0500
commit40f02bc8088ca93224bf65f083c4ab3b17eaf435 (patch)
treef5c4d0bd619a4f7547f318a86ecfdd05e88ca814 /gentoo/.config/fastfetch
parentd97f4feb2c17835d31a4dff5f1109d50c4111943 (diff)
move gentoo into subdirectory
Diffstat (limited to 'gentoo/.config/fastfetch')
-rw-r--r--gentoo/.config/fastfetch/config.org92
1 files changed, 92 insertions, 0 deletions
diff --git a/gentoo/.config/fastfetch/config.org b/gentoo/.config/fastfetch/config.org
new file mode 100644
index 0000000..7a2d099
--- /dev/null
+++ b/gentoo/.config/fastfetch/config.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