feat: initial release - mobile-first web terminal with tmux touch toolbar and push notifications

This commit is contained in:
Mortdecai
2026-03-26 18:59:37 -04:00
commit 5f1beb4d4d
13 changed files with 376 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
[Unit]
Description=sethmux - web terminal (mux.sethpc.xyz)
After=network.target
[Service]
Type=simple
User=rdp
Group=rdp
ExecStartPre=/bin/bash -c "/usr/bin/tmux kill-session -t sethmux 2>/dev/null; sleep 0.5; /usr/bin/tmux new-session -d -s sethmux -x 120 -y 40"
ExecStart=/usr/local/bin/ttyd \
--port 7683 \
--interface 0.0.0.0 \
--index /opt/sethmux/index.html \
--writable \
--check-origin \
--max-clients 5 \
--ping-interval 30 \
--client-option titleFixed=sethmux \
--client-option fontSize=18 \
--client-option fontFamily=monospace \
--client-option enableSixel=true \
/usr/bin/tmux attach-session -t sethmux
Restart=always
RestartSec=3
[Install]
WantedBy=multi-user.target