Frederik Hanghøj Iversen
0c1530fd48
Move environment variables to a seperate location. Systemd now takes care of starting emacs and acpid. Changes to Emacs setup: * Flycheck is started for all programming modes * played around with gnus and mu4e (config files for mu not source-controlled yet)
19 lines
616 B
Desktop File
19 lines
616 B
Desktop File
## If your Emacs is installed in a non-standard location, you may need
|
|
## to copy this file to a standard directory, eg ~/.config/systemd/user/ .
|
|
## If you install this file by hand, change the "Exec" lines below
|
|
## to use absolute file names for the executables.
|
|
[Unit]
|
|
Description=Emacs text editor
|
|
Documentation=info:emacs man:emacs(1) https://gnu.org/software/emacs/
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/bin/emacs --fg-daemon
|
|
ExecStop=/usr/bin/emacsclient --eval "(kill-emacs)"
|
|
Environment=SSH_AUTH_SOCK=%t/keyring/ssh
|
|
Restart=on-failure
|
|
EnvironmentFile=~/.config/environment
|
|
|
|
[Install]
|
|
WantedBy=default.target
|