Update agent sock location

This commit is contained in:
Marco Thomas
2021-09-13 09:53:18 +02:00
parent 257503a851
commit bc9b63aa74
4 changed files with 6 additions and 7 deletions

View File

@@ -87,9 +87,9 @@ export HISTFILE="$HOME/.zsh_history"
export SAVEHIST=5000
# ============================== ssh-agent
if ! [ -S /tmp/mthomas-agent.sock ]; then
if ! [ -S $HOME/.ssh/mthomas-agent.sock ]; then
echo "Starting ssh-agent"
ssh-agent -a /tmp/mthomas-agent.sock
ssh-agent -a $HOME/.ssh/mthomas-agent.sock
ssh-add
fi