From f1bec15eb19b7e39098087bc214c96691be17421 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 25 Dec 2025 23:33:41 -0500 Subject: [PATCH] Added check for debian trixie in quickshell install Trixe doesn't support overview seems like the QT libs are too old On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: install-scripts/quickshell.sh --- install-scripts/quickshell.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install-scripts/quickshell.sh b/install-scripts/quickshell.sh index 45b457c..e46afd9 100755 --- a/install-scripts/quickshell.sh +++ b/install-scripts/quickshell.sh @@ -27,6 +27,12 @@ mkdir -p "$PARENT_DIR/Install-Logs" LOG="$PARENT_DIR/Install-Logs/install-$(date +%d-%H%M%S)_quickshell.log" MLOG="$PARENT_DIR/Install-Logs/install-$(date +%d-%H%M%S)_quickshell_build.log" +# Debian Trixie guard: Quickshell not compatible on Trixie at this time +if grep -Eiq '\bVERSION_CODENAME=trixie\b' /etc/os-release; then + echo "[INFO] debian Trixie not compatible with quickshell. Skipping quickshell install." | tee -a "$LOG" + exit 0 +fi + # Refresh sudo credentials once (install_package uses sudo internally) if command -v sudo >/dev/null 2>&1; then sudo -v 2>/dev/null || sudo -v