From e04f59b1952a3b3d1f8996fd537010fe4b96bd3b Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Fri, 6 Oct 2017 10:24:53 +0200 Subject: zsh/profile.d: tirxu was replaced by lithium MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johannes Löthberg --- zsh/profile.d/lithium | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 zsh/profile.d/lithium (limited to 'zsh/profile.d/lithium') 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 -- cgit v1.2.3-54-g00ecf