From 422f14029a06c220c305d0509f5282cb42ea0187 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 15 Feb 2023 14:24:01 -0600 Subject: [PATCH] fix(zsh): suppress ssh sock output --- dots/.config/zsh/config/profile/profile/env.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/zsh/config/profile/profile/env.zsh b/dots/.config/zsh/config/profile/profile/env.zsh index 35df3236..fa209d81 100644 --- a/dots/.config/zsh/config/profile/profile/env.zsh +++ b/dots/.config/zsh/config/profile/profile/env.zsh @@ -11,7 +11,7 @@ export ZSH_AUTOSUGGEST_STRATEGY=(history completion) ### SSH ### export SSH_AUTH_SOCK="${HOME}/.ssh/ssh-agent.sock" ssh-add -l >/dev/null 2>&1 -[ $? -ge 2 ] && ssh-agent -a "$SSH_AUTH_SOCK" >/dev/null +[ $? -ge 2 ] && ssh-agent -a "$SSH_AUTH_SOCK" >/dev/null 2>&1 ### FZF ###