aboutsummaryrefslogtreecommitdiff
path: root/SystemD/.config
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-07-25 15:34:18 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-07-25 15:44:48 +0100
commite5cc2ec33db5b674eda80c5ba45230889e64932e (patch)
tree35c6cd788accbbff810e90474e8e98043a6cff9e /SystemD/.config
parent1aa826227e052fb2f62df54b1599ec883df01799 (diff)
downloaddotfiles-e5cc2ec33db5b674eda80c5ba45230889e64932e.tar.gz
dotfiles-e5cc2ec33db5b674eda80c5ba45230889e64932e.tar.bz2
dotfiles-e5cc2ec33db5b674eda80c5ba45230889e64932e.zip
(SystemD)~emacs service to not use a name for the daemon
In hindsight, what other daemon am I going to be using for Emacs? It's not like I'll be starting two different servers! Even if I was, Emacs has the ability to assign a new unique name for the server depending on if another server is already running. Also, having a name for the main server makes it harder for other services (such as notmuch-mua.service) to find your Emacs instance.
Diffstat (limited to 'SystemD/.config')
-rw-r--r--SystemD/.config/systemd/user/emacs.service4
1 files changed, 2 insertions, 2 deletions
diff --git a/SystemD/.config/systemd/user/emacs.service b/SystemD/.config/systemd/user/emacs.service
index d7ba157..3c98bfb 100644
--- a/SystemD/.config/systemd/user/emacs.service
+++ b/SystemD/.config/systemd/user/emacs.service
@@ -3,8 +3,8 @@ Description=Emacs
[Service]
Type=forking
-ExecStart=/usr/bin/emacs --bg-daemon=MAIN
-ExecStop=/usr/bin/emacsclient --socket-name=MAIN --eval "(kill-emacs)"
+ExecStart=/usr/local/bin/emacs --bg-daemon
+ExecStop=/usr/local/bin/emacsclient --eval "(kill-emacs)"
Restart=on-failure
TimeoutStartSec=0