From fc625c5cc61696e9268d80b7e1d17b8435579600 Mon Sep 17 00:00:00 2001 From: Chris Down Date: Fri, 24 Jul 2015 12:06:52 -0700 Subject: 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. --- contrib/dmenu/passmenu | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/dmenu/passmenu b/contrib/dmenu/passmenu index 486b663..be85878 100755 --- 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 -- cgit v1.2.3-59-g8ed1b