aboutsummaryrefslogtreecommitdiffstats
path: root/zsh
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2017-08-20 14:31:36 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2017-08-20 14:31:49 +0200
commit5097d3e46e3109b392f712ccea24d4d003cb0d62 (patch)
treef9bc37767822e1f3217b51663e2f796399601e60 /zsh
parentdeebe1db7764bc3b58a1cc408879bcff99ac982a (diff)
downloaddotfiles-5097d3e46e3109b392f712ccea24d4d003cb0d62.tar.xz
Add hydrogen zprofile
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'zsh')
-rw-r--r--zsh/profile.d/hydrogen16
1 files changed, 16 insertions, 0 deletions
diff --git a/zsh/profile.d/hydrogen b/zsh/profile.d/hydrogen
new file mode 100644
index 0000000..b9d418b
--- /dev/null
+++ b/zsh/profile.d/hydrogen
@@ -0,0 +1,16 @@
+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
+ }
+
+ export MAILDIR="$HOME"/mail
+fi
+
+# vim: ft=zsh