Initial commit

This commit is contained in:
agryphus 2023-08-02 00:45:22 -04:00
commit 85f5be4658
18 changed files with 663 additions and 0 deletions

14
.local/bin/pinentry-wrapper Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
#
# Defaults to Qt, with a choice of curses for selected programs
# PINENTRY_USER_DATA is a GnuPG defined variable (see man gpg)
case "$PINENTRY_USER_DATA" in
qt)
exec /usr/bin/pinentry-qt "$@"
;;
*)
exec /usr/bin/pinentry-curses "$@"
;;
esac