7 lines
150 B
Bash
7 lines
150 B
Bash
[[ ${SSH_AUTH_SOCK} ]] || {
|
|
find "${HOME}/.1password/agent.sock" &>/dev/null \
|
|
&& export SSH_AUTH_SOCK="${HOME}/.1password/agent.sock"
|
|
}
|
|
|
|
return 0
|