blob: 5c8f661a6b31337c186f60765996f5569c60d2f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#!/usr/bin/openrc-run
# Copyright 2008-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2 or later
USER=${RC_SVCNAME##*.}
: ${EMACS:=/usr/bin/emacs}
: ${EMACS_OPTS:=--daemon}
: ${EMACS_TIMEOUT:=5}
SKIP_ARGB_VISUALS=1
description="Start an Emacs server running in the background"
depend() {
need localmount
after bootmisc dbus
}
checkconfig() {
if [ "${RC_VERSION:-0}" = "0" ]; then
eerror "This script cannot be used for baselayout-1."
return 1
fi
if [ "${USER}" = "${RC_SVCNAME}" ]; then
eerror "You have to create an init script for each user:"
eerror "ln -s emacs /etc/init.d/emacs.<user>"
return 1
fi
if ! id -u "${USER}" >/dev/null; then
eerror "${USER}: No such user"
return 1
fi
local has_daemon=$(${EMACS} -batch -q --no-site-file \
--eval "(princ (fboundp 'daemonp))")
if [ "${has_daemon}" != t ]; then
eerror "${EMACS} does not support running as a daemon"
return 1
fi
}
start() {
local HOME
checkconfig || return 1
eval HOME="~${USER}"
# parsing files of session
ebegin "Fetching dbus address..."
for file in $(ls -d -1 $HOME/.dbus/session-bus/**-0)
do
echo $file
cat $file
source $file
done
export DBUS_SESSION_BUS_ADDRESS
ebegin "Starting Emacs daemon for user ${USER}"
start-stop-daemon --start \
--chdir ${HOME} \
--user ${USER} \
--exec ${EMACS} -- ${EMACS_OPTS}
eend $?
}
stop() {
ebegin "Stopping Emacs daemon for user ${USER}"
start-stop-daemon --stop \
--retry "TERM/${EMACS_TIMEOUT}/KILL/5" \
--user ${USER} \
--exec ${EMACS} -- ${EMACS_OPTS}
eend $?
}
|