You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been using the great tool for a day now and I feel like I'm not seeing all of the information that I want to see or that it's not searching for the information I want it to search for. The Bitwarden's apps all search everywhere and then show this information in an overview similar to this:
---------
|favicon| Entry name
| | Username
---------
The favicon gives away what website it's from, so without a GUI we can replace that with the domain (e.g. accounts.google.com). The entry name and username is something we can easily show. If this information is all shown at once, I assume we can search for it with rofi. Could this behaviour be added so there is 1 search bar that will get you everthing you need?
If we could fire up bwmenu with --item-format that would allow you to input a string that is then formatted and allows for a few parameters:
%name: Name of the password entry.
%username: Username on the service.
%website: Hostname of the website (github.com shortened from https://github.com/login, same as the Bitwarden extension shows).
%type: login, card, identity, or secure note.
%folder: the folder it is in.
This would allow for everyone to search for what he needs and not even show what they don't want because it is configurable. Perhaps if it is possible, we could have a separate search list that contains everything and then only show some part of that information. E.g.: for the entry for account.google.com with [email protected] and entry name Private, we could search for "Private", "google", or "[email protected]" (or combine them) and all see the entry we're looking for, but then configure it to only show "[email protected] (account.google.com)".
The text was updated successfully, but these errors were encountered:
AndreasBackx
changed the title
Allow for a personalised format
Custom item formatting and global search
Apr 19, 2019
I suggest you try to implement some basic proof-of-concept of this feature; it'd be nice to have a working prototype to look at.
rofi has a -markup-rows option that allows some basic Pango formatting of strings (enabling colors, bold, italics, etc.), which could also be helpful showing more information.
Which feeds rofi with items following this format: <name> :: <login.username>[ :: <login.uris[?].uri>]
The drawback feature? is each entry corresponds to a single uri (if any) from the login.uris array. And will behave the same way with any array it may encounter within an item, eg. collectionIds
I've been using the great tool for a day now and I feel like I'm not seeing all of the information that I want to see or that it's not searching for the information I want it to search for. The Bitwarden's apps all search everywhere and then show this information in an overview similar to this:
The favicon gives away what website it's from, so without a GUI we can replace that with the domain (e.g. accounts.google.com). The entry name and username is something we can easily show. If this information is all shown at once, I assume we can search for it with rofi. Could this behaviour be added so there is 1 search bar that will get you everthing you need?
If we could fire up
bwmenu
with--item-format
that would allow you to input a string that is then formatted and allows for a few parameters:%name
: Name of the password entry.%username
: Username on the service.%website
: Hostname of the website (github.com shortened from https://github.com/login, same as the Bitwarden extension shows).%type
: login, card, identity, or secure note.%folder
: the folder it is in.This would allow for everyone to search for what he needs and not even show what they don't want because it is configurable. Perhaps if it is possible, we could have a separate search list that contains everything and then only show some part of that information. E.g.: for the entry for account.google.com with [email protected] and entry name Private, we could search for "Private", "google", or "[email protected]" (or combine them) and all see the entry we're looking for, but then configure it to only show "[email protected] (account.google.com)".
The text was updated successfully, but these errors were encountered: