]>
Commit | Line | Data |
---|---|---|
03b903de | 1 | #!/bin/sh |
2 | # https://kevinlocke.name/bits/2019/07/31/prefer-terminal-for-gpg-pinentry | |
3 | ||
4 | set -Ce | |
8650c486 | 5 | gfx="gnome gtk-2 gtk qt x11" |
03b903de | 6 | tty="curses tty" |
7 | case "${PINENTRY_USER_DATA-}" in | |
8650c486 | 8 | # prefer tty unless USE_TTY is 0 |
9 | *USE_TTY=0*) list="$gfx $tty";; | |
10 | *) list="$tty $gfx";; | |
03b903de | 11 | esac |
12 | ||
13 | for x in $list; do | |
cd6fbefb | 14 | p=$(command -v "pinentry-$x") 2>/dev/null |
03b903de | 15 | if [ $? = 0 ]; then |
16 | exec "$p" "$@" | |
17 | fi | |
18 | done | |
19 | ||
20 | echo "No pinentry program found" >&2 |