diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2017-10-06 10:24:53 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2017-10-06 10:24:53 +0200 |
commit | e04f59b1952a3b3d1f8996fd537010fe4b96bd3b (patch) | |
tree | 3c36ae1d75ad5b37f1593e868ed12018b599f160 /zsh/profile.d/lithium | |
parent | 8c59a8587de55c84b89d7fd2c61f4ab0621aaaa3 (diff) | |
download | dotfiles-e04f59b1952a3b3d1f8996fd537010fe4b96bd3b.tar.xz |
zsh/profile.d: tirxu was replaced by lithium
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'zsh/profile.d/lithium')
-rw-r--r-- | zsh/profile.d/lithium | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/zsh/profile.d/lithium b/zsh/profile.d/lithium new file mode 100644 index 0000000..c922e77 --- /dev/null +++ b/zsh/profile.d/lithium @@ -0,0 +1,14 @@ +if (( UID )); then + function { + local envfile="$XDG_RUNTIME_DIR"/ssh-agent.env + local pid=$(awk -F'[=;]' 'FNR == 2 {print $2}' "$envfile" 2>/dev/null) + if [[ -n "$pid" ]] && kill -0 "$pid" &>/dev/null; then + source "$envfile" >/dev/null + else + ssh-agent > "$envfile" + source "$envfile" >/dev/null + fi + } +fi + +# vim: ft=zsh |