dotfiles/dot_local/scripts/executable_passmenu.sh

26 lines
631 B
Bash
Raw Normal View History

2020-04-09 04:18:20 +00:00
#!/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}" )
2021-01-27 23:19:58 +00:00
password=$(printf '%s\n' "${password_files[@]}" | $HOME/.local/scripts/rofiwrap.sh -dmenu -levenshtein-sort -i -p "Password for" "$@")
2020-06-08 16:11:42 +00:00
# password=$(printf "%s\n" "${password_files[@]}" | fzf --layout=reverse)
2020-04-09 04:18:20 +00:00
[[ -n $password ]] || exit
2021-02-06 05:46:39 +00:00
exec 3< <(pass show -c "$password" 2>&1)
read <&3 MSG
2021-02-06 05:41:40 +00:00
notify-send "Password copied." "$MSG"
2021-02-06 05:46:39 +00:00
wait
2020-05-09 06:42:34 +00:00