aboutsummaryrefslogtreecommitdiff
path: root/home/scripts/pinentry.sh
diff options
context:
space:
mode:
authorElizabeth <me@liz.coffee>2025-06-02 13:11:10 -0700
committerElizabeth <me@liz.coffee>2025-06-02 13:11:10 -0700
commitd098e94ad102da9d018acca72ca5a5c554d25a01 (patch)
treed6d23ee63ad5a1aa4017a605d9e09e75de2c5f49 /home/scripts/pinentry.sh
parentede675866355d34ac9fdc1b8e047576f574bdfa2 (diff)
downloaddots-d098e94ad102da9d018acca72ca5a5c554d25a01.tar.gz
dots-d098e94ad102da9d018acca72ca5a5c554d25a01.zip
Update paths n stuff
Diffstat (limited to 'home/scripts/pinentry.sh')
-rwxr-xr-xhome/scripts/pinentry.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/home/scripts/pinentry.sh b/home/scripts/pinentry.sh
deleted file mode 100755
index f02ee6f..0000000
--- a/home/scripts/pinentry.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-source log.sh "pinentry.sh"
-
-#-- <gpg> --
-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 "$@"
-#-- </gpg> --