From cd8d13c68e05de632dd91fa3ce5938253fcf1ed9 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 14 May 2026 11:06:50 -0500 Subject: [PATCH] [fix] faster rbw script --- scripts/rbw.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/rbw.sh b/scripts/rbw.sh index 10c2674..c6ecef9 100755 --- a/scripts/rbw.sh +++ b/scripts/rbw.sh @@ -40,15 +40,15 @@ echo $option case ${option} in Password ) echo "${SECRET}" - wtype -s 100 -d 50 $(rbw get "${SECRET}") + wtype -s 50 -d 10 $(rbw get "${SECRET}") ;; User ) - wtype -s 100 -d 50 $(rbw get --full "${SECRET}" | rg Username: | awk '{$1 = ""; print $0}') + wtype -s 50 -d 10 $(rbw get --full "${SECRET}" | rg Username: | awk '{$1 = ""; print $0}') ;; "User and password" ) - wtype -s 100 -d 50 $(rbw get --full "${SECRET}" | rg Username: | awk '{$1 = ""; print $0}') - wtype -s 100 -d 50 -P tab - wtype -s 100 -d 50 $(rbw get "${SECRET}") + wtype -s 50 -d 10 $(rbw get --full "${SECRET}" | rg Username: | awk '{$1 = ""; print $0}') + wtype -s 50 -d 10 -P tab + wtype -s 50 -d 10 $(rbw get "${SECRET}") ;; "QR-Code" ) if [[ $SECRET =~ wifi$ ]]; then @@ -63,7 +63,7 @@ case ${option} in fi ;; "OTP" ) - wtype -s 100 -d 50 $(rbw code "${SECRET}") + wtype -s 50 -d 10 $(rbw code "${SECRET}") ;; esac