Unset TEMP variable.

master
Pierre Neidhardt 2013-09-18 15:05:52 +02:00
parent 8c573ecf7f
commit c5f04a1ce5
2 changed files with 3 additions and 2 deletions

View File

@ -109,6 +109,9 @@ if [ -n "$(command -v ssh-agent)" ]; then
unset SSH_ENV_FILE
fi
## Set TEMP dir if you want to override /tmp for somce application that check for this variable. Usually not a good idea.
# [ -d "$HOME/temp" ] && export TEMP="$HOME/temp"
## Wine DLL override. This removes the annoying messages for Mono and Gecko.
export WINEDLLOVERRIDES="mscoree,mshtml="

View File

@ -29,8 +29,6 @@ if [ "$OSTYPE" = "linux-gnu" ] ; then
[ -n "$(command -v udiskie)" ] && udiskie &
fi
[ -d "$HOME/temp" ] && export TEMP="$HOME/temp"
## This env variable is used by some programs (like ranger and awesome) to get
## terminal executable name.
export TERMCMD="urxvt"