aboutsummaryrefslogtreecommitdiffstats
path: root/zsh
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-08-16 20:13:38 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2014-08-16 20:13:38 +0200
commitafef22e9b0e448672db6d59e9964e15e1d8f1244 (patch)
tree94bd9cc956d388f00b0c90043d9ce9ef9a83bec0 /zsh
parent1aea109359eb3bb747d19730ec34de3f0a2531a0 (diff)
downloaddotfiles-afef22e9b0e448672db6d59e9964e15e1d8f1244.tar.xz
profile-leeloo: use local::lib to set up perl paths
Diffstat (limited to 'zsh')
-rw-r--r--zsh/profile-leeloo10
1 files changed, 3 insertions, 7 deletions
diff --git a/zsh/profile-leeloo b/zsh/profile-leeloo
index a7ae8aa..9e205d2 100644
--- a/zsh/profile-leeloo
+++ b/zsh/profile-leeloo
@@ -1,27 +1,23 @@
export LD_PRELOAD="$HOME"/.local/lib/libwcwidth.so
+export XAUTHORITY="$HOME"/.local/share/xorg/authority
source "$HOME"/misc/grawity/code/kerberos/kc.sh
-export PERL5LIB="$HOME"/misc/grawity/code/lib/perl5
-
-export XAUTHORITY="$HOME"/.local/share/xorg/authority
+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