diff options
| author | Jake Koroman <jake@jakekoroman.com> | 2025-06-01 10:55:23 -0400 |
|---|---|---|
| committer | Jake Koroman <jake@jakekoroman.com> | 2025-06-01 10:55:23 -0400 |
| commit | 3b4590b1a745b06ce36cb558a4749923675e9b35 (patch) | |
| tree | 532e9f00ae0b7fdeb3645f13b926e8a65b74f1ec /scripts/passmenu-otp | |
Ready. Set. Go!
Diffstat (limited to 'scripts/passmenu-otp')
| -rwxr-xr-x | scripts/passmenu-otp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/scripts/passmenu-otp b/scripts/passmenu-otp new file mode 100755 index 0000000..379fd8f --- /dev/null +++ b/scripts/passmenu-otp @@ -0,0 +1,32 @@ +#!/usr/bin/env bash + +shopt -s nullglob globstar + +typeit=0 +if [[ $1 == "--type" ]]; then + typeit=1 + shift +fi + +prefix=${PASSWORD_STORE_DIR-~/.password-store} +password_files=( "$prefix"/**/*.gpg ) +password_files=( "${password_files[@]#"$prefix"/}" ) +password_files=( "${password_files[@]%.gpg}" ) + +# dmenu_cmd="wofi_style --show dmenu $@" +dmenu_cmd="dmenu -l 12 -i $@" +password=$(printf '%s\n' "${password_files[@]}" | $dmenu_cmd) + +[[ -n $password ]] || exit + +pass_cmd=show +if pass show "$password" | grep -q '^otpauth://'; then + pass_cmd=otp +fi + +if [[ $typeit -eq 0 ]]; then + pass $pass_cmd -c "$password" 2>/dev/null +else + pass $pass_cmd "$password" | { IFS= read -r pass; printf %s "$pass"; } | + xdotool type --clearmodifiers --file - +fi |
