From 035c7d83bfd024461111602544baeb0b46e0286d Mon Sep 17 00:00:00 2001 From: Wang Zichong Date: Mon, 12 Aug 2024 19:44:33 +0800 Subject: [PATCH] fix: temporary revert application name change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 由于 kwin 来不及改,暂时回退应用名称的变更。 Log: --- shell/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell/main.cpp b/shell/main.cpp index e255b718f..47d0b00da 100644 --- a/shell/main.cpp +++ b/shell/main.cpp @@ -98,10 +98,11 @@ class AppletManager int main(int argc, char *argv[]) { + setenv("DSG_APP_ID", "org.deepin.dde.shell", 0); DGuiApplicationHelper::setAttribute(DGuiApplicationHelper::UseInactiveColorGroup, false); QApplication a(argc, argv); a.setOrganizationName("deepin"); - a.setApplicationName("org.deepin.dde.shell"); + a.setApplicationName("org.deepin.dde-shell"); a.setApplicationVersion(QT_STRINGIFY(DS_VERSION)); QCommandLineParser parser;