diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-17T19·07+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-17T19·07+0000 |
commit | 1ba65acfd6b79eed887b875e6095cdf9e1b97510 (patch) | |
tree | 55a6a27178f6bcf7f5e1ce469407cac9ab52ab1e | |
parent | 68395b29f965c4e76d0b4e1ce6739358063a070e (diff) |
Don't start emacs server at login
Since I'm using EXWM, I'm unsure what benefits starting the Emacs server gives me. In the interest of cleaning up my xsessionrc, I'm deleting this.
-rw-r--r-- | configs/shared/.xsessionrc.shared | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/configs/shared/.xsessionrc.shared b/configs/shared/.xsessionrc.shared index b5cbf598d43d..f14589a47058 100644 --- a/configs/shared/.xsessionrc.shared +++ b/configs/shared/.xsessionrc.shared @@ -11,10 +11,6 @@ xsetroot -solid "#333333" # Set fallback cursor. xsetroot -cursor_name left_ptr -# Start the Emacs server -# TODO: Consider starting this with `systemctl --user enable emacs.service` -emacs --daemon - # Start ssh-agent eval "$(ssh-agent -s)" @@ -29,7 +25,6 @@ compton & unclutter & # Startup Emacs (and EXWM). -# TODO: Does this prevent the Emacs server (i.e. `emacs --daemon`) from running? # TODO: Do I even want `--exit-with-session`? This makes debugging Emacs more # expensive than perhaps it should be. exec dbus-launch --exit-with-session emacs |