From 291f05af1fd10bb270d5cba66257b42357c088f9 Mon Sep 17 00:00:00 2001 From: DepressedTWM Date: Wed, 20 May 2026 11:41:28 +0400 Subject: [PATCH] Linux DE detection fix --- src/oneshot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oneshot.cpp b/src/oneshot.cpp index 9c95410..515cc3b 100644 --- a/src/oneshot.cpp +++ b/src/oneshot.cpp @@ -299,7 +299,7 @@ Oneshot::Oneshot(RGSSThreadData &threadData) : desktopEnv = "kde"; } else if (desktop.find("lxde") != std::string::npos) { desktopEnv = "lxde"; - } else if (desktop.find("lxde") != std::string::npos) { + } else if (desktop.find("lxqt") != std::string::npos) { desktopEnv = "lxqt"; } else if (desktop.find("deepin") != std::string::npos) { desktopEnv = "deepin";