keepassxreboot / keepassxc

KeePassXC is a cross-platform community-driven port of the Windows application “Keepass Password Safe”.
https://keepassxc.org/
Other
20.16k stars 1.42k forks source link

Hotkey for Opening KeePassXC and focus Search #1986

Closed solariz closed 6 years ago

solariz commented 6 years ago

feature request

I use Keepass also for Storing Information like Creditcard or Wallet Addresses. It would be very very useful if there could be a hotkey defined in XC to open the Main GUI and place focus in Quick Search box to quickly search and access Information.

Thanks!

phoerious commented 6 years ago

You can use Ctrl+F to focus the search, which I think should be easy enough. But perhaps we can do something with the focus after unlocking a database or so.

solariz commented 6 years ago

What I mean is a global System Hotkey to bring the minimized UI to Front if I am in another app. Currently the Workflow require me to search the tiny tray Icon, Click it and than use CTRL F to search. I the Keepass Client there is a global Hotkey like CTRL-ALT-P for opening the Password Manager nomatter in which app you are.

phoerious commented 6 years ago

This looks like it's mostly a duplicate of #99 then, which is most likely a WONTFIX.

solariz commented 6 years ago

Yes duplicated.

Sorry to hear that it's a WONTFIX because actually a very common use of keepass :(

phoerious commented 6 years ago

We are thinking about adding some command line flags, which can be bound to global hotkeys in your system settings, to do things like that. But native global hotkeys are really painful to implement cross-platform.

plissje commented 5 years ago

Hey guys, Is there an update on this? Would love to have this feature as I'm missing this greatly :(

ghost commented 5 years ago

I was looking for the same thing just now - I think a command-line flag to open window, focus on search would be great because then I can just use my OS built-in application shortcut system to create a shortcut for this.

ghost commented 5 years ago

The way it stands now is not terrible though. If you have KeePassXC setup to keep running in the system tray and if you have it set to start only a single instance, when you use your OS to create an application shortcut to just run keepassxc - it works pretty well. I just have to hit one extra Ctrl+F shortcut to focus on search - no big deal really.

Also, with this setup, if you leave the window with search focused - the next time you bring it up search is already focused.

With something like xdotool I can probably implement this feature myself.

solariz commented 4 years ago

Another year passed, any updates on the Hotkey management? I really like to move to keepass XC but this WONTFIX is a no go for me :(

So sadly.

droidmonkey commented 4 years ago

This issue is a duplicate (and closed) as mentioned above.

xmokay commented 1 year ago

I reckon the cost to add this handy feature wouldn't be steep. It's a pity that it's not supported.

CerebralFreeze commented 11 months ago

Use AutoHotkey to create a script for a global hotkey. The script I use is below. I use the upper left ` key (since I rarely use this key) to toggle show/hide KeePassXC. Pretty handy.

I also use AutoHotkey to create a lot of other global hotkeys for programs like Microsoft Office and Chrome. Pretty useful. You should try it.

`:: 
If (WinExist("ahk_exe KeePassXC.exe") && WinActive("ahk_exe KeePassXC.exe"))                    
    WinMinimize
Else
{
    Run C:\Program Files\KeePassXC\KeePassXC.exe
    WinActivate, ahk_exe KeePassXC.exe
}
Return

Another year passed, any updates on the Hotkey management? I really like to move to keepass XC but this WONTFIX is a no go for me :(

So sadly.