From 2b72ea43aae6f0fc51de24ccd7ffbd09220586bb Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Fri, 27 Oct 2023 13:36:43 +0200 Subject: [PATCH] Removed ssh_agent being launched from .bashrc --- shell/bash/.bashrc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/shell/bash/.bashrc b/shell/bash/.bashrc index 5ce9845..6dbcf91 100755 --- a/shell/bash/.bashrc +++ b/shell/bash/.bashrc @@ -16,11 +16,6 @@ fi [[ -z "$FUNCNEST" ]] && export FUNCNEST=100 # limits recursive functions, see 'man bash' -## SSH agent -if [[ ! -n ${SSH_CONNECTION} ]]; then - export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket" -fi - ## Use the up and down arrow keys for finding a command in history ## (you can write some initial letters of the command first). bind '"\e[A":history-search-backward'