X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=bash%2F.bashrc;h=dd39849bfcb7f7a6d98dcbc9def4ebbd20a6f0fd;hb=243abbfb507645037bcdc85d9bd5798776c1e46a;hp=a90c1772bfcd263c3f4303cc074baaab312d58b3;hpb=464e1c4b109bd05a933ec3a7e55e8ba59da7d30f;p=max%2Fdotfiles.git diff --git a/bash/.bashrc b/bash/.bashrc index a90c177..dd39849 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -123,13 +123,14 @@ function __prompt_command() } PROMPT_COMMAND=__prompt_command - -if [ -f "${HOME}/.gpg-agent-info" ]; then - . "${HOME}/.gpg-agent-info" - export GPG_AGENT_INFO - export SSH_AUTH_SOCK +if ! pgrep -x -u "${USER}" gpg-agent >/dev/null 2>&1; then + gpg-connect-agent /bye >/dev/null 2>&1 fi +unset SSH_AGENT_PID +if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then + export SSH_AUTH_SOCK=~/.gnupg/S.gpg-agent.ssh +fi -# Set GPG TTY -export GPG_TTY=$(tty) +export GPG_TTY=($tty) +gpg-connect-agent updatestartuptty /bye > /dev/null