We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, I have various google logins, so when I search for ts.google.com I just see
ts.google.com
There should be a way to tell these apart. the chrome extension does this by also showing the username.
The text was updated successfully, but these errors were encountered:
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
google.com foo@gmail.com
google.com bar@gmail.com
Sorry, something went wrong.
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'
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.
No branches or pull requests
For example, I have various google logins, so when I search for
ts.google.com
I just seeThere should be a way to tell these apart. the chrome extension does this by also showing the username.
The text was updated successfully, but these errors were encountered: