From 15b24ab9d782a8e5683f305ec8b1c31849a64246 Mon Sep 17 00:00:00 2001 From: Elizabeth Date: Mon, 19 May 2025 23:03:02 -0700 Subject: initial commit --- home/scripts/pinentry.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 home/scripts/pinentry.sh (limited to 'home/scripts/pinentry.sh') diff --git a/home/scripts/pinentry.sh b/home/scripts/pinentry.sh new file mode 100755 index 0000000..f02ee6f --- /dev/null +++ b/home/scripts/pinentry.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +source log.sh "pinentry.sh" + +#-- -- +bin="${HOMEBREW_PREFIX:-"/usr"}/bin" +case "$PINENTRY_USER_DATA" in + *USE_TTY*) pe=$bin/pinentry-tty ;; + *USE_CURSES*) pe=$bin/pinentry-curses ;; + *USE_QT*) pe=$bin/pinentry-qt ;; + *USE_MAC*) pe=$bin/pinentry-mac ;; + *USE_GTK2*) pe=$bin/pinentry-gtk-2 ;; + *USE_GNOME3*) pe=$bin/pinentry-gnome3 ;; + *USE_X11*) pe=$bin/pinentry-x11 ;; +esac + +log DEBUG "$pe" + +exec $pe "$@" +#-- -- -- cgit v1.2.3-70-g09d2