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 /.login-daemons | |
parent | b273cc64b722c2a46befa65ed0e389d60bd83b2e (diff) |
move daemon-starting into a separate file, do it in .profile (and .bashrc)
Diffstat (limited to '.login-daemons')
-rw-r--r-- | .login-daemons | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.login-daemons b/.login-daemons new file mode 100644 index 0000000..5b8851e --- /dev/null +++ b/.login-daemons @@ -0,0 +1,7 @@ +#!/bin/sh + +if [ -x "`which daemon`"]; then + daemon emacs --daemon + daemon sysfiles + daemon maildirproc +fi |