Ответ на комментарий от btimofeev
> Добавляем файл ~/.config/systemd/user/emacs.serviceБольше не нужно. Начиная с 26 версии юнит идет вместе с дистрибутивом
systemctl --user cat emacs.service # /usr/lib/systemd/user/emacs.service [Unit] Description=Emacs text editor Documentation=info:emacs man:emacs(1) https://gnu.org/software/emacs/ [Service] Type=notify ExecStart=/usr/bin/emacs --fg-daemon ExecStop=/usr/bin/emacsclient --eval "(kill-emacs)" # The location of the SSH auth socket varies by distribution, and some # set it from PAM, so don't override by default. # Environment=SSH_AUTH_SOCK=%t/keyring/ssh Restart=on-failure [Install] WantedBy=default.target> Активируем сервис командой systemctl --user enable emacs.service и перелогиниваемся.Не нужно перелогиниваться. Просто systemctl --user enable --now emacs, либо systemctl --user start emacs
Difrex (2020-09-01 13:38:55)
[Ответить]