From 6f2606865d9c0b96d7cd17455fda7ff84fcf2225 Mon Sep 17 00:00:00 2001 From: ambertia <95402631+ambertia@users.noreply.github.com> Date: Wed, 2 Oct 2024 14:39:36 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20hyfetch=20configuration=20?= =?UTF-8?q?and=20configuration=20for=20fastfetch=20dependency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/fastfetch/config.jsonc | 76 ++++++++++++++++++++++++++++++++++ .config/hyfetch.json | 16 +++++++ 2 files changed, 92 insertions(+) create mode 100644 .config/fastfetch/config.jsonc create mode 100644 .config/hyfetch.json diff --git a/.config/fastfetch/config.jsonc b/.config/fastfetch/config.jsonc new file mode 100644 index 0000000..7b5abc7 --- /dev/null +++ b/.config/fastfetch/config.jsonc @@ -0,0 +1,76 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "modules": [ + + "title", + "separator", + + // Basic system information + { + "type": "os", + "format": "{3}" + }, + { + "type": "host", + "format": "{5} {2} {3}" + }, + "kernel", + "uptime", + "packages", + { + "type": "shell", + "format": "{6} {4}" + }, + + "break", + + // Hardware stuff + { + "type": "cpu", + "format": "{1} ({5}) @ {7}" + }, + { + "type": "gpu", + "driverSpecific": true, + "format": "{2} [{6}] @ {12}" + }, + { + "type": "memory", + "format": "{1} / {2} {4} ({3})" + }, + { + "type": "disk", + "format": "{1} / {2} - {9} {13} ({3})" + }, + { + "type": "display", + "format": "{1}x{2} @ {3}Hz in {12}\" [{7}]", + "key": "Display" + }, + + "break", + + // Core userspace software + "terminal", + { + "type": "terminalfont", + "format": "{2} {4}" + }, + "wm", + "lm", + + "break", + + // Odds and ends that felt appropriate for the end (as if in a system tray) + { + "type": "battery", + "format": "{10} ({4}) [{5}]" + }, + "poweradapter", + "locale", + + "break", + + "colors" + ] +} diff --git a/.config/hyfetch.json b/.config/hyfetch.json new file mode 100644 index 0000000..1225e17 --- /dev/null +++ b/.config/hyfetch.json @@ -0,0 +1,16 @@ +{ + "preset": "transgender", + "mode": "rgb", + "light_dark": "dark", + "lightness": 0.65, + "color_align": { + "mode": "horizontal", + "custom_colors": [], + "fore_back": null + }, + "backend": "fastfetch", + "args": null, + "distro": null, + "pride_month_shown": [], + "pride_month_disable": false +}