aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/profile-leeloo
blob: 1e3f7348acc25309ca8011c1a7f6cb43da4185bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export LD_PRELOAD="$HOME"/.local/lib/libwcwidth.so

export PERL5LIB="$HOME"/misc/grawity/code/lib/perl5"${PERL5LIB+:}$PERL5LIB";
source <(perl -Mlocal::lib="$HOME"/.local)

function {
	local envfile="$XDG_RUNTIME_DIR"/gpg-agent.env
	if [[ -e "$envfile" ]] && kill -0 $(cut -d':' -f2 <"$envfile") &>/dev/null; then
		source "$envfile"
	else
		source <(gpg-agent --daemon --write-env-file "$envfile")
	fi
	export GPG_AGENT_INFO
}
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
}

source "$HOME"/misc/grawity/code/kerberos/kc.sh

# vim: ft=zsh