From 87ec1489fa9859e4bb6fb382b6a24447a937bdcf Mon Sep 17 00:00:00 2001 From: Chris Down Date: Fri, 24 Jul 2015 11:28:47 -0700 Subject: passmenu: Read from stdin when using xdotool to type password This works around a bug in xdotool parsing when encountering quotes, see https://github.com/jordansissel/xdotool/issues/72. Thanks to Gerd Wachsmuth for the report. --- contrib/dmenu/passmenu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/dmenu/passmenu b/contrib/dmenu/passmenu index a0da173..486b663 100755 --- a/contrib/dmenu/passmenu +++ b/contrib/dmenu/passmenu @@ -20,5 +20,5 @@ password=$(printf '%s\n' "${password_files[@]}" | dmenu "$@") if [[ $typeit -eq 0 ]]; then pass show -c "$password" 2>/dev/null else - xdotool - <<<"type --clearmodifiers -- $(pass show "$password" | head -n 1)" + pass show "$password" | tr -d '\n' | xdotool type --clearmodifiers --file - fi -- cgit v1.2.3-59-g8ed1b