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