From a46c5c23b26cf149065bd516a781bc66535d8bcf Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 11 Nov 2011 15:19:25 -0500 Subject: move daemon-starting into a separate file, do it in .profile (and .bashrc) --- .login-daemons | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .login-daemons (limited to '.login-daemons') 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 -- cgit v1.2.3-2-g168b From fa0728204665d9d985f212826be65a563312e7e6 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 13 Nov 2011 14:46:29 -0500 Subject: oops, `[' needs whitespace before `]' --- .login-daemons | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.login-daemons') diff --git a/.login-daemons b/.login-daemons index 5b8851e..1d76e9d 100644 --- a/.login-daemons +++ b/.login-daemons @@ -1,6 +1,6 @@ #!/bin/sh -if [ -x "`which daemon`"]; then +if [ -x "`which daemon`" ]; then daemon emacs --daemon daemon sysfiles daemon maildirproc -- cgit v1.2.3-2-g168b