From 86a0fd409a96a9e5366faf3e9d8efca4f4a1d533 Mon Sep 17 00:00:00 2001 From: radicaltray <134393276+RadicalTray@users.noreply.github.com> Date: Sun, 19 Oct 2025 23:35:28 +0700 Subject: [PATCH] fix: fix ghostty config reload on nixos (#499) --- scripts/matugen-worker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/matugen-worker.sh b/scripts/matugen-worker.sh index 084c2d38..ddb70af7 100755 --- a/scripts/matugen-worker.sh +++ b/scripts/matugen-worker.sh @@ -259,7 +259,7 @@ EOF cat "$CONFIG_DIR/ghostty/config-dankcolors" >> "$TMP" mv "$TMP" "$CONFIG_DIR/ghostty/config-dankcolors" if [[ -f "$CONFIG_DIR/ghostty/config" ]] && grep -q "^[^#]*config-dankcolors" "$CONFIG_DIR/ghostty/config" 2>/dev/null; then - pkill -USR2 -x ghostty >/dev/null 2>&1 || true + pkill -USR2 -x 'ghostty|.ghostty-wrappe' >/dev/null 2>&1 || true fi fi fi