mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-11-07 01:12:57 -05:00
Change StartupNotify to false
StartupNotify causes KeepassXC to hang on startup until the notification timeout is reached, making the KeepassXC window unavailable in the application switcher (i.e. alt-tab) on various Linux distros. Fixes https://github.com/keepassxreboot/keepassxc/issues/6423 Fixes https://github.com/keepassxreboot/keepassxc/issues/11664
This commit is contained in:
parent
abeb231bc3
commit
e19e7d2c43
2 changed files with 2 additions and 2 deletions
|
|
@ -39,7 +39,7 @@ Exec=keepassxc %f
|
|||
TryExec=keepassxc
|
||||
Icon=@APP_ICON_NAME@
|
||||
StartupWMClass=keepassxc
|
||||
StartupNotify=true
|
||||
StartupNotify=false
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Version=1.5
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ void NixUtils::setLaunchAtStartup(bool enable)
|
|||
<< QStringLiteral("TryExec=") << executeablePathOrName << '\n'
|
||||
<< QStringLiteral("Icon=") << QApplication::applicationName().toLower() << '\n'
|
||||
<< QStringLiteral("StartupWMClass=keepassxc") << '\n'
|
||||
<< QStringLiteral("StartupNotify=true") << '\n'
|
||||
<< QStringLiteral("StartupNotify=false") << '\n'
|
||||
<< QStringLiteral("Terminal=false") << '\n'
|
||||
<< QStringLiteral("Type=Application") << '\n'
|
||||
<< QStringLiteral("Version=1.0") << '\n'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue