From b66e1402dfe82def42433cc5f55b13c5e050e662 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Sun, 12 Mar 2017 19:27:04 +0100 Subject: [PATCH] Support for Manjaro Linux --- include/osdetection | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/osdetection b/include/osdetection index 6bc47fcd..8c900a86 100644 --- a/include/osdetection +++ b/include/osdetection @@ -140,6 +140,11 @@ OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') OS_NAME="CoreOS Linux" ;; + "manjaro") + LINUX_VERSION="Manjaro Linux" + OS_FULLNAME="Manjaro Linux" + OS_VERSION="Rolling release" + ;; "ubuntu") LINUX_VERSION="Ubuntu" OS_FULLNAME=$(grep "^PRETTY_NAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')