aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/profile-zorg
blob: 0a19020f405fd0194d73c0201e7ebe4d39ef9f38 (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
	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