From 54f65b8d5c252356c1ed0b704f0c16ad6042a605 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Tue, 7 Mar 2023 13:33:18 +0000 Subject: [PATCH] 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. --- zsh/lib/gpg.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.48.1