Closed shackra closed 4 years ago
just noticed that the title of my Emacs frame is emacsd
turns out that the systemd file had the following
[Service]
Type=notify
ExecStart=@/usr/bin/emacs emacsd --fg-daemon
ExecStop=/usr/bin/emacsclient --eval "(kill-emacs)"
so I took the liberty to change things around:
[Service]
Type=forking
ExecStart=/usr/bin/emacs --daemon
ExecStop=/usr/bin/emacsclient --eval "(kill-emacs)"
alternatively, we can overwrite the value of invocation-name
to point to the correct emacs binary:
(let ((invocation-name "emacs"))
(bug-hunter-init-file))
Attempted to hut a bug on my init.el file but somehow the package tries to do something with a directory called
~/emacsd
instead of~/.emacs.d
; something is magically deleting the dots...Here is the backtrace: