From f3be7254d35322025bb8ccb03acdfa8b18f192ec Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Thu, 13 Jul 2023 21:26:37 -0400 Subject: [PATCH] .profile: only start ssh-agent on DEFAULT profile --- src/.profile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/.profile b/src/.profile index 8426356..c9b19c8 100644 --- a/src/.profile +++ b/src/.profile @@ -84,6 +84,8 @@ export PATH="$PATH":"$XDG_DATA_HOME"/go/bin # cppman can't set it itself for some reason export MANPATH="$MANPATH":~/.cache/cppman/ -eval $(ssh-agent) +if [ "$SYSTEM_PROFILE" = "DEFAULT" ]; then + eval $(ssh-agent) +fi . .config/bashrc