]> git.sev.monster Git - dotfiles.git/blame - base/.zprofile
suppress stderr for `which gpg`
[dotfiles.git] / base / .zprofile
CommitLineData
f4a5f003 1#XXX: ensure we override /etc/profile, gets loaded after .zshenv
a568f7fa 2source ~/.zshenv
3
cbfa782e 4t="${TMPDIR:-/tmp}/home-$LOGNAME"
a568f7fa 5h="$HOME/tmp"
6if [[ ! -e "$t" ]] {
7 mkdir -m 700 "$t" > /dev/null 2>&1
cbfa782e 8 #TODO: check if dir exists after mkdir
a568f7fa 9}
10#allow opaque entries to override
11if [[ ! -e "$h" ]] {
12 ln -sf "$t" "$h" > /dev/null 2>&1
13}
a8f1ccaf 14unset t
15unset h
This page took 0.035259 seconds and 4 git commands to generate.