5 lines
170 B
Bash
Executable file
5 lines
170 B
Bash
Executable file
#!/bin/sh
|
|
|
|
password=$(find ~/.password-store/ -type f -name '*.gpg' |
|
|
sed 's/.*\/\(.*\)\.gpg$/\1/' | dmenu -i -p "Pass:")
|
|
[ -n "$password" ] && pass show -c "$password"
|