summaryrefslogtreecommitdiffstats
path: root/.gnupg/pinentry-wrapper
diff options
context:
space:
mode:
Diffstat (limited to '.gnupg/pinentry-wrapper')
-rwxr-xr-x.gnupg/pinentry-wrapper16
1 files changed, 16 insertions, 0 deletions
diff --git a/.gnupg/pinentry-wrapper b/.gnupg/pinentry-wrapper
new file mode 100755
index 0000000..229ad94
--- /dev/null
+++ b/.gnupg/pinentry-wrapper
@@ -0,0 +1,16 @@
+#!/bin/sh
+# TAKEN FROM https://unix.stackexchange.com/a/236747/135796
+# choose pinentry depending on PINENTRY_USER_DATA
+# requires pinentry-curses and pinentry-tty
+# this *only works* with gpg 2
+# see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802020
+# Fixes the pinentry-tty error https://github.com/neomutt/neomutt/issues/1014
+
+case $PINENTRY_USER_DATA in
+ curses)
+ exec /usr/local/bin/pinentry-curses "$@"
+ ;;
+ *)
+ exec /usr/local/bin/pinentry-tty "$@"
+ ;;
+esac