aboutsummaryrefslogtreecommitdiff
path: root/config/fastfetch/config.org
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-08-07 14:58:48 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-08-07 14:58:48 -0500
commit341c3be75228dbd23fd05208d148acecf950d573 (patch)
treeecac1a33408f61c9816c56f97a2b617ab425c68e /config/fastfetch/config.org
initial commit
Diffstat (limited to 'config/fastfetch/config.org')
-rw-r--r--config/fastfetch/config.org92
1 files changed, 92 insertions, 0 deletions
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