Keep Open, after use
Is your feature request related to a problem? Please describe.
Describe the solution you'd like
Describe alternatives you've considered
Additional context
Is it possible to implement a "Keep Open Until Closed" feature, it's very annoying having to open Copy Q every time I want to copy/paste... am using both Windows and Linux
Have you tried changing the "Close When Unfocused" setting under Preferences > General?
Sure have, but in both Win 11 and Linux Mint, it still closes
On 17 September 2024 4:28:56 pm AWST, Luke Arms @.***> wrote:
Have you tried changing the "Close When Unfocused" setting under Preferences > General?
-- Reply to this email directly or view it on GitHub: https://github.com/hluk/CopyQ/issues/2844#issuecomment-2354876555 You are receiving this because you authored the thread.
Message ID: @.***>
Sure have, but in both Win 11 and Linux Mint, it still closes
Do you mean the main window closes even when "Close When Unfocused" option is disabled?
Is the main window only hidden below other windows (e.g. still available in the panel and with alt+tab)? This can be changed by enabling the "Always on Top" option.
Can I quickly toggle the "Close When Unfocused" setting with a shortcut or something? because sometimes I want to paste text I copied one after another but the windows kept closing after I paste one
Can I quickly toggle the "Close When Unfocused" setting with a shortcut or something?
You can use the following command to toggle the option with shortcut or from toolbar/menu (here is how to add the command to CopyQ):
[Command]
Command="
copyq:
const option = 'close_on_unfocus';
const value = (config(option) == 'true') ? false : true;
config(option, value);"
Icon=
InMenu=true
Name=Toggle Close When Unfocused