Files
dotwryn/zsh/rc.d/98.1password-ssh-agent.zsh
T

7 lines
150 B
Bash
Raw Normal View History

2026-05-05 14:17:43 -06:00
[[ ${SSH_AUTH_SOCK} ]] || {
find "${HOME}/.1password/agent.sock" &>/dev/null \
&& export SSH_AUTH_SOCK="${HOME}/.1password/agent.sock"
}
2024-08-16 09:41:26 -06:00
return 0