From e5cc2ec33db5b674eda80c5ba45230889e64932e Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 25 Jul 2021 15:34:18 +0100 Subject: (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. --- Scripts/.local/scripts/eselect | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Scripts') diff --git a/Scripts/.local/scripts/eselect b/Scripts/.local/scripts/eselect index 5f11f5b..d086b7e 100755 --- a/Scripts/.local/scripts/eselect +++ b/Scripts/.local/scripts/eselect @@ -9,9 +9,8 @@ case "$(printf "new\nstop\nrestart\neshell" | dmenu -p "eserver: ")" in notify-send "Halted Emacs server";; "new") notify-send "Launching Emacs"; - emacsclient --socket-name=MAIN -c --alternate-editor=emacs;; + emacsclient -c --alternate-editor=emacs;; "eshell") notify-send "Launching Eshell"; - emacsclient --socket-name=MAIN -c --alternate-editor=emacs --eval '(let ((b (or (get-buffer "*eshell*") (eshell)))) - (switch-to-buffer b))' + emacsclient -c --alternate-editor=emacs --eval '(let ((b (or (get-buffer "*eshell*") (eshell)))) (switch-to-buffer b))';; esac -- cgit v1.2.3-13-gbd6f