Add --minimized CLI option

This commit is contained in:
outfoxxed 2025-01-23 04:55:18 -08:00 committed by Jonathan White
parent 15ac8ac4f8
commit c9a64be699
3 changed files with 10 additions and 1 deletions

View file

@ -58,6 +58,9 @@ Your database works offline and requires no internet connection.
*--pw-stdin*:: *--pw-stdin*::
Reads password of the database from stdin. Reads password of the database from stdin.
*--minimized*::
Starts KeePassXC minimized to the system tray.
*--debug-info*:: *--debug-info*::
Displays debugging information. Displays debugging information.

View file

@ -9224,6 +9224,10 @@ This option is deprecated, use --set-key-file instead.</source>
<source>Passkey</source> <source>Passkey</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<source>start minimized to the system tray</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>QtIOCompressor</name> <name>QtIOCompressor</name>

View file

@ -84,6 +84,7 @@ int main(int argc, char** argv)
QCommandLineOption pwstdinOption("pw-stdin", QObject::tr("read password of the database from stdin")); QCommandLineOption pwstdinOption("pw-stdin", QObject::tr("read password of the database from stdin"));
QCommandLineOption allowScreenCaptureOption("allow-screencapture", QCommandLineOption allowScreenCaptureOption("allow-screencapture",
QObject::tr("allow screenshots and app recording (Windows/macOS)")); QObject::tr("allow screenshots and app recording (Windows/macOS)"));
QCommandLineOption startMinimized("minimized", QObject::tr("start minimized to the system tray"));
QCommandLineOption helpOption = parser.addHelpOption(); QCommandLineOption helpOption = parser.addHelpOption();
QCommandLineOption versionOption = parser.addVersionOption(); QCommandLineOption versionOption = parser.addVersionOption();
@ -95,6 +96,7 @@ int main(int argc, char** argv)
parser.addOption(pwstdinOption); parser.addOption(pwstdinOption);
parser.addOption(debugInfoOption); parser.addOption(debugInfoOption);
parser.addOption(allowScreenCaptureOption); parser.addOption(allowScreenCaptureOption);
parser.addOption(startMinimized);
parser.process(app); parser.process(app);
@ -207,7 +209,7 @@ int main(int argc, char** argv)
} }
// start minimized if configured // start minimized if configured
if (config()->get(Config::GUI_MinimizeOnStartup).toBool()) { if (parser.isSet(startMinimized) || config()->get(Config::GUI_MinimizeOnStartup).toBool()) {
mainWindow.hideWindow(); mainWindow.hideWindow();
} else { } else {
mainWindow.bringToFront(); mainWindow.bringToFront();