dotfiles/zsh/.config/zsh/ssh.zsh

7 lines
155 B
Bash
Raw Normal View History

2023-03-14 14:57:38 +00:00
if [[ -z $SSH_CONNECTION ]] && [[ $HOSTNAME != "toolbox" ]]; then
{
eval "$(ssh-agent)"
ssh-add ~/.ssh/id_^*.pub
} &> /dev/null
fi