summaryrefslogtreecommitdiffstats
path: root/systemd
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-09-22 21:40:37 +0200
committerGravatar Tom Willemse2014-09-22 21:40:37 +0200
commit440c0cc3ca6d7e1338e8134311952d27a1c9a616 (patch)
tree1f04078f330ca67abbc003981bff804d9ae9075d /systemd
parentf2dd6bbec2d8a604d450aca98c558fb63162409a (diff)
downloaddotfiles-440c0cc3ca6d7e1338e8134311952d27a1c9a616.tar.gz
dotfiles-440c0cc3ca6d7e1338e8134311952d27a1c9a616.zip
Add SBCL service using GNU Screen
Diffstat (limited to 'systemd')
-rw-r--r--systemd/.config/systemd/user/sbcl.service10
1 files changed, 10 insertions, 0 deletions
diff --git a/systemd/.config/systemd/user/sbcl.service b/systemd/.config/systemd/user/sbcl.service
new file mode 100644
index 0000000..24bd72c
--- /dev/null
+++ b/systemd/.config/systemd/user/sbcl.service
@@ -0,0 +1,10 @@
+# -*- mode: conf-unix; -*-
+[Unit]
+Description=Slime
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/screen -D -m /usr/bin/sbcl --eval '(ql:quickload "swank")' --eval '(swank:create-server :dont-close t)'
+
+[Install]
+WantedBy=default.target