Documentation
Quick Reference
Run the application
python pumpkin_face.py # Fullscreen, default monitor
python pumpkin_face.py 1 # Fullscreen, second monitor
python pumpkin_face.py --window # Windowed mode
Send a command
# netcat
echo "happy" | nc localhost 5000
# Python
import socket
s = socket.socket()
s.connect(('localhost', 5000))
s.send(b'happy')
s.close()
// WebSocket (browser / Node.js)
const ws = new WebSocket('ws://localhost:5001');
ws.onopen = () => ws.send('happy');
Version History
See the full Whatβs New page for the complete changelog.
| Version | Date | Highlights |
|---|---|---|
| 0.5.10 | 2026-03-03 | Recording chaining, help command |
| 0.5.8 | 2026-03-02 | AI recording skill (Google Gemini) |
| 0.5.0 | 2026-02-27 | WebSocket dual-protocol support |
| 0.4.1 | 2026-02-26 | Timeline upload/download |