diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-10-07 09:43:50 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2017-06-01 18:37:35 +0200 |
commit | a07df1979ede714d7ffa57a5c026a9bb93a039d0 (patch) | |
tree | a4572e495e3003ed6ddc39d39fcdfdded0a37056 /zsh/profile-tirxu | |
parent | 0beec026e9e9d57ee140d1d5ddc245f3ee7e2997 (diff) | |
download | dotfiles-a07df1979ede714d7ffa57a5c026a9bb93a039d0.tar.xz |
Add grawity/code support back
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'zsh/profile-tirxu')
-rw-r--r-- | zsh/profile-tirxu | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/zsh/profile-tirxu b/zsh/profile-tirxu new file mode 100644 index 0000000..56618a8 --- /dev/null +++ b/zsh/profile-tirxu @@ -0,0 +1,21 @@ +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 PERL5LIB="$HOME"/misc/grawity/code/lib/perl5"${PERL5LIB+:}$PERL5LIB"; + path+=("$HOME"/misc/grawity/code/obj/host."$(hostname)"/ + "$HOME"/misc/grawity/code/bin) + source "$HOME"/misc/grawity/code/kerberos/kc.sh + + export MAILDIR="$HOME"/mail +fi + +# vim: ft=zsh |