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() {