.dotfiles/bash/bash_login.host

19 lines
442 B
Bash
Raw Normal View History

# vim: ft=sh
## Configure static SSH Agent
export SSH_AUTH_SOCK="$HOME/.spool/ssh-agent.sock"
2023-07-06 16:21:45 +00:00
if [ -e "$SSH_AUTH_SOCK" ]; then
rm "$SSH_AUTH_SOCK"
2022-12-12 19:48:42 +00:00
fi
2023-07-06 16:21:45 +00:00
if [ -e "$HOME/.spool/ssh-agent.env" ]; then
2023-06-28 03:55:56 +00:00
rm "$HOME/.spool/ssh-agent.env"
2022-12-12 19:48:42 +00:00
fi
2023-06-28 03:55:56 +00:00
if [[ "$(pgrep ssh-agent)" ]]; then
pkill ssh-agent
2022-12-12 19:48:42 +00:00
fi
2023-07-06 16:21:45 +00:00
. ${HOME}/scripts/ssh-agent.sh
2022-12-12 19:48:42 +00:00
# Static/predictable Sway socket
2023-06-28 03:55:56 +00:00
export SWAYSOCK="$HOME/.spool/sway-ipc.sock"
#export SWAYSOCK="`sway --get-socketpath`"