diff --git a/modules/gpg/init.zsh b/modules/gpg/init.zsh index 3d80a46..7976fd7 100644 --- a/modules/gpg/init.zsh +++ b/modules/gpg/init.zsh @@ -14,11 +14,11 @@ fi _gpg_agent_conf="${GNUPGHOME:-$HOME/.gnupg}/gpg-agent.conf" _gpg_agent_env="${TMPDIR:-/tmp}/gpg-agent.env.$UID" +# Load environment variables from previous run +source "$_gpg_agent_env" 2> /dev/null + # Start gpg-agent if not started. if [[ -z "$GPG_AGENT_INFO" && ! -S "${GNUPGHOME:-$HOME/.gnupg}/S.gpg-agent" ]]; then - # Export environment variables. - source "$_gpg_agent_env" 2> /dev/null - # Start gpg-agent if not started. if ! ps -U "$LOGNAME" -o pid,ucomm | grep -q -- "${${${(s.:.)GPG_AGENT_INFO}[2]}:--1} gpg-agent"; then eval "$(gpg-agent --daemon | tee "$_gpg_agent_env")"