From 144458bb5dda0024bc981df883015f74fd95831d Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 7 Jan 2025 08:26:27 +0000 Subject: [PATCH] Set hyfetch preset based on light_dark Trans flag only looks good with my dark theme colours so use rainbow if light theme --- system/home/shell/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/home/shell/default.nix b/system/home/shell/default.nix index 923b81f5..282a9a02 100644 --- a/system/home/shell/default.nix +++ b/system/home/shell/default.nix @@ -71,8 +71,8 @@ }; hyfetch = { enable = true; - settings = { - preset = "pansexual"; + settings = rec { + preset = if light_dark == "dark" then "transgender" else "rainbow"; mode = "rgb"; light_dark = config.lib.stylix.scheme.variant; lightness = 0.4;