sporo zmian, nie pamiętam czego :)

This commit is contained in:
2023-07-08 13:12:31 +02:00
parent 060b2022d2
commit 192276ff80
38 changed files with 1260 additions and 51 deletions

11
bin/pinentry Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
set -eu
PINENTRY_TERMINAL='/sbin/pinentry-curses'
PINENTRY_VAYLAND='/sbin/pinentry-gtk-2'
if [ -n "${DISPLAY-}" -a -z "${TERM-}" ]; then
exec "$PINENTRY_VAYLAND" "$@"
else
exec "$PINENTRY_TERMINAL" "$@"
fi