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
Executable
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
# Send a push notification to kitty.sethpc.xyz
# Usage: sethmux-notify "Build complete!" or echo "done" | sethmux-notify
if [ -n "$1" ]; then
echo "$*" > /tmp/sethmux-notify
else
cat > /tmp/sethmux-notify
fi