aboutsummaryrefslogtreecommitdiff
path: root/config/i3/scripts/pass
blob: aa2ad9624e1afd082c687b2970886cea3cef21ca (plain)
1
2
3
4
5
6
#!/bin/sh
find ~/.password-store -type f -printf '%P\n' | \
	sed 's/\.gpg$//' | dmenu -p 'Pass:' | \
	while read -r psw; do
		pass -c "$psw"
done