From 50a1b15ec3385524ef12566b2d2906ef7e55e55c Mon Sep 17 00:00:00 2001 From: Aera23 <130415001+Aera23@users.noreply.github.com> Date: Wed, 2 Oct 2024 12:15:40 +0930 Subject: [PATCH] Update osdetection - Peppermint OS --- include/osdetection | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/osdetection b/include/osdetection index 9d579ccb..c9422c37 100644 --- a/include/osdetection +++ b/include/osdetection @@ -406,6 +406,13 @@ OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') OS_VERSION_FULL=$(grep "^PRETTY_NAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') ;; + "peppermint") + LINUX_VERSION="Peppermint OS" + LINUX_VERSION_LIKE="Debian" + OS_NAME="Peppermint OS" + OS_VERSION=$(grep "^PRETTY_NAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + OS_VERSION_FULL=$(grep "^VERSION_CODENAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + ;; "poky") LINUX_VERSION="Poky" OS_NAME="openembedded"