21 lines
390 B
Bash
Executable file
21 lines
390 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Read up to the first three lines from standard input
|
|
read -r USER || USER=""
|
|
read -r PASS || PASS=""
|
|
read -r TOTP || TOTP=""
|
|
|
|
type_sleep=45
|
|
next_sleep=250
|
|
|
|
# Use wtype to output the USER and PASS
|
|
$BWZY_TYPE_CMD \
|
|
-d $type_sleep "$USER" \
|
|
-s $next_sleep \
|
|
-k tab \
|
|
-s $next_sleep \
|
|
-d $type_sleep "$PASS" \
|
|
-s $next_sleep \
|
|
-k return
|
|
|
|
$BWZY_TOTP_COPY <<<"$TOTP"
|