From 66be0d82e41fb2b170198cf90704b3a3c09537d1 Mon Sep 17 00:00:00 2001 From: Janet Blackquill Date: Sun, 18 Sep 2022 21:19:42 -0400 Subject: [PATCH] fix: it's called Plasma --- src/launcher.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/launcher.cpp b/src/launcher.cpp index f93369c..73d6422 100644 --- a/src/launcher.cpp +++ b/src/launcher.cpp @@ -31,6 +31,9 @@ QString Launcher::currentDE() { QByteArray bytes = qgetenv("XDG_CURRENT_DESKTOP"); QString output = QString::fromLocal8Bit(bytes); + if (bytes == "KDE") { + return "Plasma"; + } return output; } Launcher::~Launcher() {