diff options
author | Matthew Lemon <y@yulqen.org> | 2024-04-21 14:00:20 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-04-21 14:01:50 +0100 |
commit | e4d3b035f074b61dd5dbb5a466fda718b5e5cd7e (patch) | |
tree | 69fae3e428c54b4cfa7b8717bd16889b8bc9147a /fish2024/config.fish | |
parent | 261395e47d7d70c31bb63b149ecf18224e243b34 (diff) |
Trying to start ssh-agent properly in fish
Diffstat (limited to '')
-rw-r--r-- | fish2024/config.fish | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fish2024/config.fish b/fish2024/config.fish index a3a8260..a855111 100644 --- a/fish2024/config.fish +++ b/fish2024/config.fish @@ -6,10 +6,10 @@ if status is-interactive end # https://gist.github.com/josh-padnick/c90183be3d0e1feb89afd7573505cab3 -if test -z (pgrep ssh-agent) - eval (ssh-agent -c) > /dev/null - set -Ux SSH_AUTH_SOCK $SSH_AUTH_SOCK - set -Ux SSH_AGENT_PID $SSH_AGENT_PID -end +# if test -z (pgrep ssh-agent) +eval (ssh-agent -c) > /dev/null +set -Ux SSH_AUTH_SOCK $SSH_AUTH_SOCK +set -Ux SSH_AGENT_PID $SSH_AGENT_PID +# end . ~/perl5/perlbrew/etc/perlbrew.fish |