aboutsummaryrefslogtreecommitdiff
path: root/config/sway/scripts/pass
blob: 06383b38758cb6e4c3a81feb2aacbd80d2ddf86d (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