From 8bc45df4cca6742d5a8d5b2c65e06134ad5b50f9 Mon Sep 17 00:00:00 2001 From: luni3359 Date: Tue, 17 May 2022 12:28:51 -0500 Subject: [PATCH] osdetection: add KDE Neon --- include/osdetection | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/osdetection b/include/osdetection index d9b8a41c1..7e650c26d 100644 --- a/include/osdetection +++ b/include/osdetection @@ -271,6 +271,13 @@ OS_NAME="Kali Linux" 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 '"') + ;; "linuxmint") LINUX_VERSION="Linux Mint" LINUX_VERSION_LIKE="Ubuntu"