diff options
| -rw-r--r-- | .bash/exec.bash | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/.bash/exec.bash b/.bash/exec.bash index a469ccf..a59df2a 100644 --- a/.bash/exec.bash +++ b/.bash/exec.bash @@ -11,7 +11,7 @@ if echo "${SSHAGH[@]}" | grep -F --word-regexp "$(hostname -f)" > /dev/null;then  	# do not launch from SSH session, conflicts with user logging on locally afterwards  	if [ -z "$SSH_TTY" ];then  		"$HOME/bin/ssh-agent-launcher" -q -		if ! ps -fp "$(pgrep -d, -x dirmngr)" | grep "^$(whoami)" > /dev/null +		if ! pgrep -au "$(id -u)" dirmngr >/dev/null;then  			gpg-connect-agent --dirmngr /bye 2>/dev/null  			gpg --list-secret-keys >/dev/null 2>&1  		fi | 
