From e879e5212d566046087dc9821843316076c8e84b Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 30 May 2012 15:58:51 -0400 Subject: Fedora 17 does *not* like it if I override it's XAUTHORITY --- .profile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.profile') diff --git a/.profile b/.profile index d2a1e6c..d023923 100644 --- a/.profile +++ b/.profile @@ -57,7 +57,9 @@ if [ -x "`which alsactl 2>/dev/null`" ]; then fi # X11 -export XAUTHORITY=$HOME/.Xauthority +if [ -z "$XAUTHORITY" ]; then + export XAUTHORITY=$HOME/.Xauthority +fi # Start background programs ########################################## if [ -f "$HOME/.login-daemons" ]; then -- cgit v1.2.3-54-g00ecf From fc3f5bb06af5745eef9f7bfde34cc312e67b8b23 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 30 May 2012 15:59:43 -0400 Subject: Don't set TMPDIR anymore --- .profile | 7 ------- 1 file changed, 7 deletions(-) (limited to '.profile') diff --git a/.profile b/.profile index d2a1e6c..6f9f102 100644 --- a/.profile +++ b/.profile @@ -25,13 +25,6 @@ done # Settings ########################################################### -# TMPDIR -if [ -d "$HOME/tmp" ]; then - export TMPDIR="$HOME/tmp" -elif [ -d "$HOME/.prefix/tmp" ]; then - export TMPDIR="$HOME/.prefix/tmp" -fi - # Text editor if [ -f "$HOME/.selected_editor" ]; then . "$HOME/.selected_editor" -- cgit v1.2.3-54-g00ecf