Fix gpg.zsh

This commit is contained in:
Sam A. 2023-03-30 23:45:57 +02:00
parent 78deede3be
commit ddb4be62f2
Signed by: samsapti
GPG Key ID: CBBBE7371E81C4EA
1 changed files with 9 additions and 7 deletions

View File

@ -1,8 +1,10 @@
if [[ -z $SSH_CONNECTION ]] && [[ $HOSTNAME != "toolbox" ]]; then
export GPG_TTY="$TTY"
gpgconf --launch gpg-agent
gpg-connect-agent updatestartuptty /bye &> /dev/null
else
gpgconf --kill all
gpg-connect-agent reloadagent /bye &> /dev/null
if [[ $HOSTNAME != "toolbox" ]]; then
if [[ -z $SSH_CONNECTION ]]; then
export GPG_TTY="$TTY"
gpgconf --launch gpg-agent
gpg-connect-agent updatestartuptty /bye &> /dev/null
else
gpgconf --kill all
gpg-connect-agent reloadagent /bye &> /dev/null
fi
fi