diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2020-10-31 11:32:40 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2020-10-31 11:32:40 -0400 |
| commit | f6038cf3ee7262f93ef0df7b001a3ab47886b697 (patch) | |
| tree | 85058efa28ce7ce564e770e501e929500b25031e /bin/passmenu | |
| parent | 8a7171e7f3cd61ac79b8c806603130a51be3700b (diff) | |
| download | dotfiles-f6038cf3ee7262f93ef0df7b001a3ab47886b697.tar.gz dotfiles-f6038cf3ee7262f93ef0df7b001a3ab47886b697.tar.xz | |
Add some common scripts. A symlink for a vimrc snippet
Diffstat (limited to 'bin/passmenu')
| -rwxr-xr-x | bin/passmenu | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/bin/passmenu b/bin/passmenu new file mode 100755 index 0000000..4f4ef1d --- /dev/null +++ b/bin/passmenu @@ -0,0 +1,26 @@ +#!/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}" ) + +password=$(printf '%s\n' "${password_files[@]}" | dmenu "$@") + +[[ -n $password ]] || exit + +if [[ $typeit -eq 0 ]]; then + pass show -c "$password" 2>/dev/null +else + pass show "$password" | { IFS= read -r pass; printf %s "$pass"; } | + xdotool type --clearmodifiers --file - +fi + |
