aboutsummaryrefslogtreecommitdiffstats
path: root/user
diff options
context:
space:
mode:
Diffstat (limited to 'user')
-rw-r--r--user/weechat.service16
1 files changed, 16 insertions, 0 deletions
diff --git a/user/weechat.service b/user/weechat.service
new file mode 100644
index 0000000..0aa620b
--- /dev/null
+++ b/user/weechat.service
@@ -0,0 +1,16 @@
+[Unit]
+Description=WeeChat in a separate tmux session
+After=network.target local-fs.target
+ConditionFileIsExecutable=/usr/bin/tmux
+ConditionFileIsExecutable=/usr/bin/weechat
+
+[Service]
+Type=forking
+KillMode=control-group
+Environment=TMUX_TMPDIR=/run/user/%U/tmux
+ExecStartPre=/usr/bin/mkdir -p $TMUX_TMPDIR
+ExecStart=/usr/bin/tmux -L weechat new-session -d -s weechat -n weechat weechat
+ExecStop=/usr/bin/tmux -L weechat send-keys -t weechat:1 /quit Enter
+
+[Install]
+WantedBy=default.target