flameshot-once profile: +showSidePanelButton

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

View File

@ -124,6 +124,10 @@ let
default = false; default = false;
type = types.bool; type = types.bool;
}; };
showSidePanelButton = mkOption {
default = false;
type = types.bool;
};
timeout = mkOption { timeout = mkOption {
default = 200; default = 200;
description = '' description = ''
@ -176,6 +180,7 @@ let
savePath = cfg.savePath; savePath = cfg.savePath;
showDesktopNotification = cfg.showDesktopNotification; showDesktopNotification = cfg.showDesktopNotification;
showHelp = cfg.showHelp; showHelp = cfg.showHelp;
showSidePanelButton = cfg.showSidePanelButton;
}; };
Shortcuts = { Shortcuts = {
TYPE_COPY = "Return"; TYPE_COPY = "Return";