password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit fc625c5cc61696e9268d80b7e1d17b8435579600
parent 87ec1489fa9859e4bb6fb382b6a24447a937bdcf
Author: Chris Down <chris@chrisdown.name>
Date:   Fri, 24 Jul 2015 12:06:52 -0700

passmenu: Only pass first line to xdotool

In 87ec1489fa98, I forgot that some people like to store more than one line in
their password files. We should only pass the first line to xdotool.

Diffstat:
Mcontrib/dmenu/passmenu | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/contrib/dmenu/passmenu b/contrib/dmenu/passmenu @@ -20,5 +20,7 @@ password=$(printf '%s\n' "${password_files[@]}" | dmenu "$@") if [[ $typeit -eq 0 ]]; then pass show -c "$password" 2>/dev/null else - pass show "$password" | tr -d '\n' | xdotool type --clearmodifiers --file - + pass show "$password" | + awk 'BEGIN{ORS=""} {print; exit}' | + xdotool type --clearmodifiers --file - fi