From 3b3090650f8df6fe8f1257133dc3214e46f28996 Mon Sep 17 00:00:00 2001 From: flicko <77581181+flickowoa@users.noreply.github.com> Date: Fri, 4 Jul 2025 15:06:49 +0530 Subject: [PATCH] support cachyos --- scripts/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index ae237a54a..b7a066616 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -253,6 +253,11 @@ if [ "$OS_TYPE" = "endeavouros" ]; then OS_TYPE="arch" fi +# Check if the OS is Cachy OS, if so, change it to arch +if [ "$OS_TYPE" = "cachyos" ]; then + OS_TYPE="arch" +fi + # Check if the OS is Asahi Linux, if so, change it to fedora if [ "$OS_TYPE" = "fedora-asahi-remix" ]; then OS_TYPE="fedora"