Like LastPass’ cmd+shift+l will bring search vault - is there something similar for BitWarden app? I have a lot of passwords for ssh servers and such and I need a fast way to copy the password.
Sorry if the question already has been asked, tried to search without luck.
-- file: ~/.hammerspoon/init.lua
-- https://www.hammerspoon.org/
--
-- Bring Bitwarden to front and focus on the search field
-- Required accessability to be enabled in Hammerspoon & System preferences
function launch_bitwarden_search()
hs.application.launchOrFocus("Bitwarden")
local app = hs.appfinder.appFromName("Bitwarden")
if (app ~= nil) then
local activated = app:activate(true)
if (activated) then
-- for Dock icon mode
app:selectMenuItem({"View", "Search vault"})
-- for menubar item mode
hs.eventtap.keyStroke({"cmd"}, "f")
else
hs.alert.show("😕 Unable to activate Bitwarden app")
end
else
hs.alert.show("😕 Bitwarden app not found")
end
end
hs.hotkey.bind({"cmd", "alt"}, '\\', launch_bitwarden_search)
I am using Alfredapp and a bitwarden workflow. Very convenient, but I think you’ll need to buy the Alfred powerpack to enable workflows, which, in my opinion, is absolutely worth the money.
It runs indeeds well but too slowly.
Password takes about 5 to 10 seconds to be copied in clipboard.
Quite boring when you use this a lot of times during your workday
Hammerspoon alternative from @maizy is free and quite better, on my own point of view !