|
|
|
|
|
by ralphtinner
5031 days ago
|
|
Lotta facets of unix philosophy.
It manages passwords and it does that well. "pass -c HN/ralphtinner", and then my password is on the clipboard for 45 seconds. That's nice. From TFA, the password generation is via pwgen. Encrypted filesystems often require root privs or SUID helpers and don't have straight-forward ways to do key management and key expiration. This tool relies on gpg's already working agent. |
|
Seems strange to have the password generation "on the inside", though. That essentially means that `pwgen` is a strict dependency. Instead of writing something like
the user should just type something like That way they don't need `pwgen` to install `pass`. It also means that all of the options to `pwgen` can be used without special effort or documentation.I'd say the same thing about `xclip`, but it's probably not worth having to write something like
(or however xclip is supposed to work).