Quieter gpg-agent.

This commit is contained in:
David Tomaschik
2019-09-27 19:24:44 -07:00
parent aa3a1e0237
commit c3f41435da

View File

@@ -13,7 +13,7 @@ source "$_gpg_agent_env" 2> /dev/null
if [[ -z "$GPG_AGENT_INFO" && ! -S "${GNUPGHOME:-$HOME/.gnupg}/S.gpg-agent" ]]; then
# 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")"
eval "$(gpg-agent --daemon 2>/dev/null | tee "$_gpg_agent_env")"
fi
fi