mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00: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
cd9bb483fe
commit
1e370b8ab8
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
|
||||
|
|
|
|||
|
|
@ -156,7 +156,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…
Reference in a new issue