flameshot-once profile: +showStartupLaunchMessage

This commit is contained in:
tv 2021-12-14 22:52:52 +01:00
parent 329aadc66b
commit e655784c49

View File

@ -128,6 +128,10 @@ let
default = false; default = false;
type = types.bool; type = types.bool;
}; };
showStartupLaunchMessage = mkOption {
default = false;
type = types.bool;
};
timeout = mkOption { timeout = mkOption {
default = 200; default = 200;
description = '' description = ''
@ -181,6 +185,7 @@ let
showDesktopNotification = cfg.showDesktopNotification; showDesktopNotification = cfg.showDesktopNotification;
showHelp = cfg.showHelp; showHelp = cfg.showHelp;
showSidePanelButton = cfg.showSidePanelButton; showSidePanelButton = cfg.showSidePanelButton;
showStartupLaunchMessage = cfg.showStartupLaunchMessage;
}; };
Shortcuts = { Shortcuts = {
TYPE_COPY = "Return"; TYPE_COPY = "Return";