I use pass for exporting secrets to environment variables. I have a multi-line password called "envvars" that contains a script like this: #!/usr/bin/fish set -x PASSWORD hunter2 set -x PASSWORD_STG hunter3 set -x LUGGAGE_KEY 12345 set -x TOKEN (curl "https://api.example.com/oauth/token" \ --data-urlencode "username=$USERNAME" \ --data-urlencode "password=$PASSWORD" | jq --raw-output .access_token) set -x TOKEN_STG (…
Pass: The standard Unix password manager
211–213 of 213 posts
Re: Pass: The standard Unix password manager
#212Earlier quoted context omitted.
Are you aware of passmenu, which is part of pass? The autocompletion/selection process works quite well for me
I wasn't, thanks! It's very nice to be able to type part of the domain name first and then space and then part of the username. ... but as far as I can see, passmenu just copies to clipboard and doesn't use xdotool?
Re: Pass: The standard Unix password manager
#213Earlier quoted context omitted.
I wasn't, thanks! It's very nice to be able to type part of the domain name first and then space and then part of the username. ... but as far as I can see, passmenu just copies to clipboard and doesn't use xdotool?
This is a bit late now (I need a way to follow up on my comments). But it can actually use xdotool if you run it with the --type option. See also the source here: https://git.zx2c4.com/password-store/tree/contrib/dmenu/pass...