made xdotool read password from stdin. workaround for https://github.com/jordansissel/xdotool/issues/72

This commit is contained in:
Rasmus Steinke 2015-07-25 13:25:15 +02:00
parent 2c8ecf5b68
commit 9dfcfe2e55

View File

@ -81,7 +81,7 @@ ${open_url}: Open URL | ${copy_name}: Copy Username | ${copy_pass}: Copy Passwor
xdotool_type "${stuff[${USERNAME_field}]}" xdotool_type "${stuff[${USERNAME_field}]}"
exit exit
elif [[ $rofi_exit -eq 12 ]]; then elif [[ $rofi_exit -eq 12 ]]; then
xdotool_type "$password" pass show "$selected_password" | head -1 | tr -d '\n' | xdotool type --clearmodifiers --file -
exit exit
elif [[ $rofi_exit -eq 14 ]]; then elif [[ $rofi_exit -eq 14 ]]; then
echo -n "${stuff[${USERNAME_field}]}" | xclip 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 if [[ -z "${stuff["$AUTOTYPE_field"]}" ]]; then
xdotool_type "${stuff[${USERNAME_field}]}" xdotool_type "${stuff[${USERNAME_field}]}"
xdotool key Tab xdotool key Tab
xdotool_type "$password" pass show "$selected_password" | head -1 | tr -d '\n' | xdotool type --clearmodifiers --file -
#xdotool_type "$password"
sleep 1 sleep 1
if [[ ${auto_enter} == "true" ]]; then if [[ ${auto_enter} == "true" ]]; then
xdotool key Return 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 for word in ${stuff["$AUTOTYPE_field"]}; do
if [[ $word == ":tab" ]]; then if [[ $word == ":tab" ]]; then
xdotool key Tab xdotool key Tab
elif [[ $word == "pass" ]]; then
pass show "$selected_password" | head -1 | tr -d '\n' | xdotool type --clearmodifiers --file -
else else
xdotool_type "${stuff[${word}]}" xdotool_type "${stuff[${word}]}"
fi fi