From ec900129faebdc738cf3cedbf6992d1bf9eca5e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chlo=C3=A9=20Vulquin?= Date: Wed, 1 Nov 2023 20:27:41 +0100 Subject: fastfetch: move to jsonc, use new ~ expansion --- dot_config/fastfetch/config.conf.tmpl | 13 ------------- dot_config/fastfetch/config.jsonc | 36 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 13 deletions(-) delete mode 100644 dot_config/fastfetch/config.conf.tmpl create mode 100644 dot_config/fastfetch/config.jsonc (limited to 'dot_config/fastfetch') diff --git a/dot_config/fastfetch/config.conf.tmpl b/dot_config/fastfetch/config.conf.tmpl deleted file mode 100644 index 0cfb782..0000000 --- a/dot_config/fastfetch/config.conf.tmpl +++ /dev/null @@ -1,13 +0,0 @@ -# global ---multithreading 4 - -# logo ---sixel {{.chezmoi.homeDir}}/Pictures/fetch.png ---logo-width 45 ---logo-padding-right 1 - -# modules --s Title:Tosti:Separator:DateTime:OS:Host:Kernel:Uptime:Packages:Shell:Display:CPU:GPU:Memory:Disk:Colors ---set-keyless Tosti=im Tosti - -# module configs diff --git a/dot_config/fastfetch/config.jsonc b/dot_config/fastfetch/config.jsonc new file mode 100644 index 0000000..56b00c2 --- /dev/null +++ b/dot_config/fastfetch/config.jsonc @@ -0,0 +1,36 @@ +{ + // preamble + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + + "modules": [ + "title", + { + "type": "custom", + "format": "im tosti", + }, + "separator", + "version", + "datetime", + "os", + "host", + "kernel", + "uptime", + "packages", + "shell", + "display", + "cpu", + "gpu", + "memory", + "disk", + "colors" + ], + + "logo": { + "type": "sixel", + "source": "~/Pictures/fetch.png", + "width": 45, + "padding": { + "right": 1 + } + }, +} -- cgit v1.2.3