summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-07-02 17:53:08 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-07-02 17:53:08 -0400
commitf33eab7bb05978f0402d1f8238ab2985498c7137 (patch)
treef127db8156111d962e143826158335eb02f379bb /.bashrc
parent9afd4dee76a0b1f195b614498351389e63dc2077 (diff)
Handle errors more intelligently
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc10
1 files changed, 6 insertions, 4 deletions
diff --git a/.bashrc b/.bashrc
index 045bd9c..9192d66 100644
--- a/.bashrc
+++ b/.bashrc
@@ -97,7 +97,9 @@ if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
-export TMPDIR="$HOME/tmp"
-daemon emacs --daemon
-daemon sysfiles
-daemon maildirproc
+if [ "$TERM" != dumb ]; then
+ export TMPDIR="$HOME/tmp"
+ daemon emacs --daemon
+ daemon sysfiles
+ daemon maildirproc
+fi