From 9dfcfe2e5535a4472dafe72663bad80a7cae5268 Mon Sep 17 00:00:00 2001 From: Rasmus Steinke Date: Sat, 25 Jul 2015 13:25:15 +0200 Subject: [PATCH] made xdotool read password from stdin. workaround for https://github.com/jordansissel/xdotool/issues/72 --- rofi-pass | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/rofi-pass b/rofi-pass index 5ffb86d..659646b 100755 --- a/rofi-pass +++ b/rofi-pass @@ -81,7 +81,7 @@ ${open_url}: Open URL | ${copy_name}: Copy Username | ${copy_pass}: Copy Passwor xdotool_type "${stuff[${USERNAME_field}]}" exit elif [[ $rofi_exit -eq 12 ]]; then - xdotool_type "$password" + pass show "$selected_password" | head -1 | tr -d '\n' | xdotool type --clearmodifiers --file - exit elif [[ $rofi_exit -eq 14 ]]; then echo -n "${stuff[${USERNAME_field}]}" | xclip @@ -108,7 +108,8 @@ ${open_url}: Open URL | ${copy_name}: Copy Username | ${copy_pass}: Copy Passwor if [[ -z "${stuff["$AUTOTYPE_field"]}" ]]; then xdotool_type "${stuff[${USERNAME_field}]}" xdotool key Tab - xdotool_type "$password" + pass show "$selected_password" | head -1 | tr -d '\n' | xdotool type --clearmodifiers --file - + #xdotool_type "$password" sleep 1 if [[ ${auto_enter} == "true" ]]; then xdotool key Return @@ -117,6 +118,8 @@ ${open_url}: Open URL | ${copy_name}: Copy Username | ${copy_pass}: Copy Passwor for word in ${stuff["$AUTOTYPE_field"]}; do if [[ $word == ":tab" ]]; then xdotool key Tab + elif [[ $word == "pass" ]]; then + pass show "$selected_password" | head -1 | tr -d '\n' | xdotool type --clearmodifiers --file - else xdotool_type "${stuff[${word}]}" fi