diff options
author | tv <tv@krebsco.de> | 2018-11-28 09:20:25 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-11-28 10:32:46 +0100 |
commit | 09556c7538565078ba9c55f834859ef6f96af90b (patch) | |
tree | c4e5c78202e259406901d92d0f0f504630076147 /tv/5pkgs/simple/fzmenu/bin/otpmenu | |
parent | 88ac2f40812b52220c1e2db290440c5abf42964e (diff) |
tv fzmenu: init
Diffstat (limited to 'tv/5pkgs/simple/fzmenu/bin/otpmenu')
-rwxr-xr-x | tv/5pkgs/simple/fzmenu/bin/otpmenu | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tv/5pkgs/simple/fzmenu/bin/otpmenu b/tv/5pkgs/simple/fzmenu/bin/otpmenu new file mode 100755 index 000000000..ad8a0fda9 --- /dev/null +++ b/tv/5pkgs/simple/fzmenu/bin/otpmenu @@ -0,0 +1,41 @@ +#! /bin/sh +set -efu + +#PATH= + +case ${FZMENU_PHASE-0} in + 0) + export FZMENU_PHASE=1 + exec setsid -f urxvt -name fzmenu-urxvt -e dash "$0" + ;; + 1) + if result=$( + FZF_DEFAULT_OPTS=${FZMENU_FZF_DEFAULT_OPTS-} + if test -n "$FZF_DEFAULT_OPTS"; then + export FZF_DEFAULT_OPTS + fi + pass git ls-files '*/otp.gpg' | \ + sed ' + + s/\/otp\.gpg$// + ' | + exec fzf \ + --history=/dev/null \ + --no-sort \ + --prompt='OTP: ' \ + ) + then + export FZMENU_PHASE=2 + export FZMENU_RESULT="$result" + setsid -f "$0" + fi + ;; + 2) + pass=$(pass otp code "$FZMENU_RESULT/otp") + printf %s "$pass" | + xdotool type -f - + ;; + *) + echo "$0: error: bad phase: $FZMENU_PHASE" >&2 + exit -1 +esac |