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

This commit is contained in:
Mortdecai
2026-03-26 08:46:00 -04:00
commit 94eb19aa76
14 changed files with 557 additions and 0 deletions
Executable
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
# Send a push notification to kitty.sethpc.xyz
# Usage: kitty-notify "Build complete!" or echo "done" | kitty-notify
if [ -n "$1" ]; then
echo "$*" > /tmp/kitty-notify
else
cat > /tmp/kitty-notify
fi