Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-Hsuan Yen <yan12125@gmail.com>2021-01-22 17:29:14 +0300
committerJonathan White <support@dmapps.us>2021-03-09 05:51:58 +0300
commite29cf8bfef73d1511d0222acc563854b6933bd7a (patch)
treea6a0ea5fefa157f86440d4b5d3cefb5a7aaad536 /src/gui/osutils
parentd6b69204a63f992bf037a8aaad15efbd83c7e33e (diff)
Make KeePassXC start after the system tray is available on LXQt
Diffstat (limited to 'src/gui/osutils')
-rw-r--r--src/gui/osutils/nixutils/NixUtils.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/osutils/nixutils/NixUtils.cpp b/src/gui/osutils/nixutils/NixUtils.cpp
index 1fcde60ef..db39b1ace 100644
--- a/src/gui/osutils/nixutils/NixUtils.cpp
+++ b/src/gui/osutils/nixutils/NixUtils.cpp
@@ -137,7 +137,8 @@ void NixUtils::setLaunchAtStartup(bool enable)
<< QStringLiteral("MimeType=application/x-keepass2;") << '\n'
<< QStringLiteral("X-GNOME-Autostart-enabled=true") << '\n'
<< QStringLiteral("X-GNOME-Autostart-Delay=2") << '\n'
- << QStringLiteral("X-KDE-autostart-after=panel") << endl;
+ << QStringLiteral("X-KDE-autostart-after=panel") << '\n'
+ << QStringLiteral("X-LXQt-Need-Tray=true") << endl;
desktopFile.close();
} else if (isLaunchAtStartupEnabled()) {
QFile::remove(getAutostartDesktopFilename());