From 874d2cbf257b90d759ab757ff27dc8b8b96cbdbe Mon Sep 17 00:00:00 2001 From: kenji Date: Sun, 28 Dec 2025 18:59:06 -0600 Subject: [PATCH] feat(fastfetch): more features --- apps/fastfetch/home.nix | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/apps/fastfetch/home.nix b/apps/fastfetch/home.nix index afad866..cb4b9ac 100644 --- a/apps/fastfetch/home.nix +++ b/apps/fastfetch/home.nix @@ -26,9 +26,10 @@ key = "kernel"; keyColor = "33"; } + { type = "host"; - format = "{5} {1}"; + format = "{2} {1}"; key = "host "; keyColor = "33"; } @@ -40,15 +41,34 @@ } { type = "cpu"; - format = " {2}"; + format = " {1}"; key = "cpu"; keyColor = "33"; } + { + type = "gpu"; + format = " {2}"; + key = "gpu"; + hideType = "integrated"; + keyColor = "33"; + } { type = "memory"; key = "memory"; keyColor = "33"; } + { + type = "disk"; + key = "disk"; + keyColor = "33"; + folders = ["/"]; # Restricts output to only the root partition + format = " {1} / {2} ({3})"; # Output: Used / Total (Percentage) + } + { + type = "uptime"; + key = "uptime"; + keyColor = "33"; + } "break" { type = "colors";