diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-11 15:19:25 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-11 15:19:25 -0500 |
commit | a46c5c23b26cf149065bd516a781bc66535d8bcf (patch) | |
tree | 1d89b52f2bb31c33420d5ac66b43dd50397a18a1 /.bashrc | |
parent | b273cc64b722c2a46befa65ed0e389d60bd83b2e (diff) |
move daemon-starting into a separate file, do it in .profile (and .bashrc)
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -96,9 +96,6 @@ if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi -if [ "$TERM" != dumb ]; then - export TMPDIR="$HOME/tmp" - daemon emacs --daemon - daemon sysfiles - daemon maildirproc +if [ -f "$HOME/.login-daemons" ]; then + . "$HOME/.login-daemons" fi |