aboutsummaryrefslogtreecommitdiff
path: root/config/i3/scripts/pass
blob: 4777c1c6f6ca396de88965cd7032aff5b3dc77a4 (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