Merge pull request #1441 from D3vil0p3r/patch-1

added Athena OS detection
This commit is contained in:
Michael Boelen 2024-03-19 11:52:00 +01:00 committed by GitHub
commit 7627d86b88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -186,6 +186,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"