From fce47ffed73ae565e4d275529d1b42ca769405ea Mon Sep 17 00:00:00 2001 From: xdenotte <73490483+xdenotte@users.noreply.github.com> Date: Tue, 26 Aug 2025 01:29:14 +0200 Subject: [PATCH] fix: ensure matugen script exits 0 on success on nixos this resulted in constant "Failed to generate system themes" errors after each wallpaper change --- scripts/matugen.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/matugen.sh b/scripts/matugen.sh index c7be1523..3f688e45 100755 --- a/scripts/matugen.sh +++ b/scripts/matugen.sh @@ -359,3 +359,5 @@ command -v qt6ct >/dev/null 2>&1 && [ -f "$CONFIG_DIR/qt6ct/colors/matugen.conf" command -v ghostty >/dev/null 2>&1 && [ -f "$CONFIG_DIR/ghostty/config-dankcolors" ] && echo " - Ghostty terminal" command -v kitty >/dev/null 2>&1 && [ -f "$CONFIG_DIR/kitty/dank-theme.conf" ] && echo " - Kitty terminal" command -v dgop >/dev/null 2>&1 && [ -f "$CONFIG_DIR/dgop/colors.json" ] && echo " - Dgop colors" + +exit 0