aboutsummaryrefslogtreecommitdiffstats
path: root/systemd/.config
diff options
context:
space:
mode:
Diffstat (limited to 'systemd/.config')
-rw-r--r--systemd/.config/systemd/user/emacs.service13
-rw-r--r--systemd/.config/systemd/user/save-environment-variables@.service9
2 files changed, 22 insertions, 0 deletions
diff --git a/systemd/.config/systemd/user/emacs.service b/systemd/.config/systemd/user/emacs.service
new file mode 100644
index 0000000..9d47b67
--- /dev/null
+++ b/systemd/.config/systemd/user/emacs.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Emacs: the extensible, self-documenting text editor
+After=save-environment-variables@emacs.service
+Requires=save-environment-variables@emacs.service
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/emacs --daemon
+ExecStop=/usr/bin/emacsclient --eval "(kill-emacs)"
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd/.config/systemd/user/save-environment-variables@.service b/systemd/.config/systemd/user/save-environment-variables@.service
new file mode 100644
index 0000000..67a03a7
--- /dev/null
+++ b/systemd/.config/systemd/user/save-environment-variables@.service
@@ -0,0 +1,9 @@
+[Unit]
+Description=Save specific environment variables
+
+[Service]
+Type=oneshot
+ExecStart=/home/chelys/usr/bin/save-environment-variables %h/.config/systemd/user/%i.service.d/env.conf PATH XDG_CONFIG_HOME XDG_DATA_HOME
+
+[Install]
+WantedBy=default.target