aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-07-10 20:06:33 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-07-14 09:57:59 +0200
commit589638251e277bb6881c6be44639c0207565d611 (patch)
treedd4942daf9bf36b51a242f9aab1ef8fb75e50cdb
parentf7dac82edd601faa3c31d5a1f1b908d591511a3a (diff)
downloaddotfiles-589638251e277bb6881c6be44639c0207565d611.tar.xz
zsh: zorg: Add profile based on leeloo's
-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