From: Samir Benmendil Date: Tue, 7 Mar 2023 13:33:18 +0000 (+0000) Subject: gpg: export correct PINENTRY_USER_DATA X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/54f65b8d5c252356c1ed0b704f0c16ad6042a605 gpg: export correct PINENTRY_USER_DATA It seems that I changed the way /usr/local/bin/pinentry works at some point without also changing the setting here. --- diff --git a/zsh/lib/gpg.zsh b/zsh/lib/gpg.zsh index fdc13db..a9f81a2 100644 --- a/zsh/lib/gpg.zsh +++ b/zsh/lib/gpg.zsh @@ -5,5 +5,5 @@ fi # Inform gpg-agent of the current TTY for user prompts. export GPG_TTY="$(tty)" if [[ -n "$SSH_CONNECTION" ]]; then - export PINENTRY_USER_DATA="USE_CURSES=1" + export PINENTRY_USER_DATA="curses" fi