what was I thinking

This commit is contained in:
Felix Van der Jeugt 2016-04-10 11:10:59 +02:00
parent 74f2632b0b
commit fe25a2a85b
1 changed files with 3 additions and 3 deletions

6
zshrc
View File

@ -37,9 +37,9 @@ setopt HIST_FIND_NO_DUPS
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_RUNTIME_DIR="/tmp/runtime-noctua"
mkdir -p "/tmp/runtime-noctua"
chmod 0700 /tmp/runtime-noctua
export XDG_RUNTIME_DIR="/tmp/runtime-$(whoami)"
mkdir -p "$XDG_RUNTIME_DIR"
chmod 0700 "$XDG_RUNTIME_DIR"
# Color ls
alias ls="ls --color=auto"