Scott Hansen
Scott Hansen
Same idea is already supported: see config.ini.example: # # override normal foreground and background colors (dmenu) or use the # # -password option (rofi) to obscure passphrase entry # [dmenu_passphrase]...
Maybe I'm misunderstanding something...dmenu doesn't have a `-mask` option. What are you trying to accomplish?
Did you try just adding -mask to the dmenu_command line in config.ini? It should support command line arguments. [dmenu] dmenu_command = /usr/bin/dmenu2 -mask
Ah, yeah, makes sense. I'll try and figure out the best way to handle it. May take awhile....not much development time lately :(
Thanks for letting me know! I'll definitely try it out when I get a chance. I've always been a little frustrated with the opening delay.
I'm having a chicken/egg problem. pykeepass_cache requires the password, but I typically prompt for the password only if the database isn't already open. So how can I supply the password...
Sigh. Sorry. Dumb question. A request: would it be possible to add a method/call to shut down the server (close the database)?
Few more things after testing for awhile: - It actually adds a significantly noticeable delay to retrieving entries even after the db was open. Even just retrieving entries from my...
> How many entries are in that database? My database with 100 entries takes about 100ms. > 725 In ipython: In [1]: %time print([i for i in kpo.entries]) It actually...
I see what you're interested in doing, but I think that is adding way more complexity and potential for breakage to the script than is warranted. How about using something...