mattydebie/bitwarden-rofi

When you have multiple logins for a domain,you can't select the proper item

autoferrit opened this issue · 5 comments

For example, I have various google logins, so when I search for ts.google.com I just see
image

There should be a way to tell these apart. the chrome extension does this by also showing the username.

A simple fix would be to change the display to be more similar to the Bitwarden desktop app, using two lines per entry:

google.com
foo@gmail.com

google.com
bar@gmail.com

Mange commented

I do not think Rofi supports multi-line entries, especially not in dmenu mode.

This is possible:

printf 'Google\nfoo@gmail.com\0Google\nbar@gmail.com' | rofi -dmenu -eh 2 -sep '\0' 

output

Mange commented

Very nice. TIL. I'll use that feature in some of my projects for sure. Thank you for showing me!

Another issue with multiple domains I just realized is that the automatic insertion ends up typing all usernames and all passwords.