]> git.rmz.io Git - dotfiles.git/blob - bin/pinentry
nvim: absorb yanky, but leave it disabled for now
[dotfiles.git] / bin / pinentry
1 #!/usr/bin/env bash
2
3 case "$PINENTRY_USER_DATA" in
4 curses) exec /usr/bin/pinentry-curses "$@" ;;
5 none) exit 1;; # no password
6 *) exec /usr/bin/pinentry-qt "$@" ;;
7 esac