From 5faeba89806bf671585c3937025bdbffaf0e1e3a Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Mon, 15 Sep 2025 09:39:11 +0100 Subject: [PATCH] Updated sysfetch fastfetch flags --- dot_config/nushell/utils.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_config/nushell/utils.nu b/dot_config/nushell/utils.nu index 5675cf3..20d82d6 100644 --- a/dot_config/nushell/utils.nu +++ b/dot_config/nushell/utils.nu @@ -5,7 +5,7 @@ export def 'exists' [ app ] { export def 'sysfetch' [] { if (exists fastfetch) { if (("kitty" in $env.TERM) or ("ghostty" in $env.TERM)) and ($"($env.HOME)/.config/fastfetch/kitty.jsonc" | path exists) { - fastfetch --load-config $"($env.HOME)/.config/fastfetch/kitty.jsonc" + fastfetch --config $"($env.HOME)/.config/fastfetch/kitty.jsonc" } else { fastfetch }