]> git.rmz.io Git - dotfiles.git/blob - bin/pinentry
bin/find_duplicate: take folders from input args
[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