From 83e9ee4e0cb72f2d899d899f8e69c6bb6088f201 Mon Sep 17 00:00:00 2001 From: D3vil0p3r Date: Sun, 1 Oct 2023 13:15:37 +0200 Subject: [PATCH] added Athena OS detection --- include/osdetection | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/osdetection b/include/osdetection index b09bd2f0..97490723 100644 --- a/include/osdetection +++ b/include/osdetection @@ -181,6 +181,12 @@ OS_FULLNAME="Artix Linux" OS_VERSION="Rolling release" ;; + "athena") + LINUX_VERSION="Athena OS" + OS_NAME=$(grep "^PRETTY_NAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + 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 '"') + ;; "bunsenlabs") LINUX_VERSION="BunsenLabs" OS_NAME="BunsenLabs"