aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/config/systemd/user/default.target.wants
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/config/systemd/user/default.target.wants')
-rw-r--r--dotfiles/config/systemd/user/default.target.wants/syncthing.service17
-rw-r--r--dotfiles/config/systemd/user/default.target.wants/tmux.service17
-rw-r--r--dotfiles/config/systemd/user/default.target.wants/twmnd.service12
3 files changed, 46 insertions, 0 deletions
diff --git a/dotfiles/config/systemd/user/default.target.wants/syncthing.service b/dotfiles/config/systemd/user/default.target.wants/syncthing.service
new file mode 100644
index 0000000..9b7ed80
--- /dev/null
+++ b/dotfiles/config/systemd/user/default.target.wants/syncthing.service
@@ -0,0 +1,17 @@
+[Unit]
+Description=Syncthing - Open Source Continuous File Synchronization
+Documentation=man:syncthing(1)
+
+[Service]
+ExecStart=/usr/bin/syncthing -no-browser -no-restart -logflags=0
+Restart=on-failure
+SuccessExitStatus=3 4
+RestartForceExitStatus=3 4
+
+# Hardening
+SystemCallArchitectures=native
+MemoryDenyWriteExecute=true
+NoNewPrivileges=true
+
+[Install]
+WantedBy=default.target
diff --git a/dotfiles/config/systemd/user/default.target.wants/tmux.service b/dotfiles/config/systemd/user/default.target.wants/tmux.service
new file mode 100644
index 0000000..8a35ce1
--- /dev/null
+++ b/dotfiles/config/systemd/user/default.target.wants/tmux.service
@@ -0,0 +1,17 @@
+[Unit]
+Description=tmux default session (detached)
+Documentation=man:tmux(1)
+
+[Service]
+Type=forking
+Environment=DISPLAY=:0
+ExecStart=/usr/bin/tmux new-session
+
+ExecStop=/home/neodarz/.tmux/plugins/tmux-resurrect/scripts/save.sh
+ExecStop=/usr/bin/tmux kill-server
+KillMode=none
+
+RestartSec=2
+
+[Install]
+WantedBy=default.target
diff --git a/dotfiles/config/systemd/user/default.target.wants/twmnd.service b/dotfiles/config/systemd/user/default.target.wants/twmnd.service
new file mode 100644
index 0000000..355d8ec
--- /dev/null
+++ b/dotfiles/config/systemd/user/default.target.wants/twmnd.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=twmn server
+After=graphical.target
+
+[Service]
+Type=simple
+StandardOutput=null
+Restart=on-failure
+ExecStart=/usr/bin/twmnd
+
+[Install]
+WantedBy=default.target