Initial commit
This commit is contained in:
commit
85f5be4658
18 changed files with 663 additions and 0 deletions
14
.local/bin/pinentry-wrapper
Executable file
14
.local/bin/pinentry-wrapper
Executable 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue