From ba4cd63bdac6a3c613d27ef887c6950954d8ac65 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Tue, 14 May 2024 12:23:36 +0000 Subject: [PATCH] Added KDE Neon --- include/osdetection | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/osdetection b/include/osdetection index ea8ccedf..33790905 100644 --- a/include/osdetection +++ b/include/osdetection @@ -325,6 +325,13 @@ OS_NAME="Manjaro" OS_VERSION="Rolling release" ;; + "neon") + LINUX_VERSION="KDE Neon" + LINUX_VERSION_LIKE="Ubuntu" + OS_NAME="KDE Neon" + 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 '"') + ;; "nethserver") LINUX_VERSION="NethServer" OS_NAME="NethServer"