.dotfiles/bash/bash_login.host

16 lines
375 B
Bash
Raw Normal View History

2022-12-12 19:48:42 +00:00
# Configure static SSH Agent
export SSH_AUTH_SOCK=$HOME/.spool/ssh-agent.sock
if [ -e $SSH_AUTH_SOCK ]; then
rm $SSH_AUTH_SOCK
fi
if [ -e $HOME/.spool/ssh-agent.env ]; then
rm $HOME/.spool/ssh-agent.env
fi
if [[ "`pgrep ssh-agent`" ]]; then
2023-01-07 17:03:31 +00:00
pkill ssh-agent
2022-12-12 19:48:42 +00:00
fi
. $HOME/scripts/ssh-agent.sh
# Static/predictable Sway socket
export SWAYSOCK=`sway --get-socketpath`