blob: ca716d9d6581636f8feaac620a729accee8c8f2d (
plain)
1
2
3
4
5
6
|
#!/bin/sh
root=${PASSWORD_STORE_DIR:-~/.password-store}
selection=$(sh -c "find $root -name '*.gpg' -print | sed -e \"s#$root/\?##\" -e \"s#.gpg##\" | dmenu -i")
pass show -c "$selection"
|