aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/profile-zorg
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2016-01-14 16:46:21 +0000
committerJohannes Löthberg <johannes@kyriasis.com>2016-01-14 16:46:21 +0000
commit7666a9cc93c079cd3a61ea8a7d4cf3103a74c56e (patch)
treee1e1b32e1666bead6a6ac7327bd2e253e989e80e /zsh/profile-zorg
parentcee153e1d03f215139ba6d74a8cd8fe039213992 (diff)
parent81873932548d4dda5345c19c3a635d53e25da061 (diff)
downloaddotfiles-7666a9cc93c079cd3a61ea8a7d4cf3103a74c56e.tar.xz
Merge remote-tracking branch 'k-kyrias/master' into theos
Diffstat (limited to 'zsh/profile-zorg')
-rw-r--r--zsh/profile-zorg21
1 files changed, 21 insertions, 0 deletions
diff --git a/zsh/profile-zorg b/zsh/profile-zorg
new file mode 100644
index 0000000..0a19020
--- /dev/null
+++ b/zsh/profile-zorg
@@ -0,0 +1,21 @@
+if (( UID )); then
+ if [[ -x "$HOME"/.local/lib/libwcwidth.so ]]; then
+ export LD_PRELOAD="$HOME"/.local/lib/libwcwidth.so
+ fi
+
+ 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
+ export MANPATH="$(manpath)":"$HOME"/.local/share/man
+fi
+
+# vim: ft=zsh