dotfiles/templates/bin/wofi-pass

9 lines
228 B
Text
Raw Permalink Normal View History

2022-04-02 18:44:26 -05:00
#!/bin/sh
PASSWORD_STORE="$HOME/.password-store"
cd "$PASSWORD_STORE" || exit 1
passwords="$(find . -name '*.gpg' | sed -nr 's/^\.\/(.*)\.gpg$/\1/p')"
selected="$(echo "$passwords" | wofi --dmenu || exit)"
pass -c "$selected"