aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/profile-tirxu
blob: 56618a80a43f2806ca3b3888602b65f4b77a3667 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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