summaryrefslogtreecommitdiffstats
path: root/scripts/fish/conf.d/sshagent.fish
blob: c60b360dd97082b789b8ad6d0fe4c7f21244ee18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# original from https://github.com/danhper/fish-ssh-agent/
# adapted to include ssh-add check
function sshagent
        if test -z "$SSH_ENV"
            set -xg SSH_ENV $HOME/.ssh/environment
        end

        if not __ssh_agent_is_started
            __ssh_agent_start
        end

        if not __ssh_agent_is_key_added
                echo "You need to authenticate."
                ssh-add -q ~/.ssh/id_lysergic
        end
end