From 731a1dae3a0c5ca0f3dc0480e73fc7969d917c29 Mon Sep 17 00:00:00 2001 From: MuhammadMaazA Date: Sun, 23 Aug 2026 03:26:06 +0100 Subject: [PATCH] Detect Debian-based Tuxedo releases --- install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 7a10d43..67c0618 100755 --- a/install.sh +++ b/install.sh @@ -20,7 +20,12 @@ echo "Installing/Updating Ghostty..." source /etc/os-release ARCH=$(dpkg --print-architecture) -case "$ID" in +DISTRO_ID="$ID" +if [[ "$ID" == "tuxedo" && "$ID_LIKE" == "debian" ]]; then + DISTRO_ID="debian" +fi + +case "$DISTRO_ID" in ubuntu|pop|tuxedo|neon) if [[ "$VERSION_ID" =~ ^(26.04|24.04)$ ]]; then SUFFIX="${ARCH}_${VERSION_ID}"