From dc5c62528f894ca5afcea877cd72c8874c5e1a65 Mon Sep 17 00:00:00 2001 From: pm187 Date: Tue, 5 Aug 2025 00:01:12 -0400 Subject: [PATCH] Update osdetection - added CachyOS Added CachyOS to include/osdetection --- include/osdetection | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/osdetection b/include/osdetection index 653aa837..141f13f9 100644 --- a/include/osdetection +++ b/include/osdetection @@ -222,7 +222,12 @@ OS_NAME="BunsenLabs" OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') OS_VERSION_FULL=$(grep "^VERSION=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') - ;; + ;; + "CachyOS") + LINUX_VERSION="CachyOS" + OS_FULLNAME="CachyOS" + OS_VERSION="Rolling release" + ;; "centos") LINUX_VERSION="CentOS" OS_NAME="CentOS Linux"