From cf707eab4aa2562f5994794b22ec0d7eb90db148 Mon Sep 17 00:00:00 2001 From: James Clarke <164679524+jjjclarke@users.noreply.github.com> Date: Tue, 30 Jul 2024 08:38:07 +0100 Subject: [PATCH] Add Manjaro support --- src/efetch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/efetch.c b/src/efetch.c index 031d330..61bd66c 100644 --- a/src/efetch.c +++ b/src/efetch.c @@ -42,6 +42,8 @@ void checkOS() { os = "Void Linux"; } else if(os.find("Ubuntu") != std::string::npos) { os = "Ubuntu"; + } else if(os.find("Manjaro") != std::string::npos) { + os = "Manjaro"; } else if(os.find("Debian") != std::string::npos) { os = "Debian"; } else {