| name | run |
| description | Launch bluefinctl in a Ghostty terminal for interactive testing. Use when user wants to see the app running, test the TUI, prototype, preview changes, or says "run it", "show me", "launch", "open terminal". |
Run bluefinctl
Launch the app in a detached Ghostty window for interactive testing.
Quick launch
ghostty -e bluefinctl &
With textual dev mode (hot-reload CSS)
ghostty -e textual run --dev src/bluefinctl/app.py &
Jump to a specific screen
ghostty -e bluefinctl --screen bundles &
Workflow
- Run the launch command (detached so pi keeps control)
- The Ghostty window appears with bluefinctl running
- User interacts with the TUI in that window
- Come back to pi to make code changes
- Re-launch to see updates (or use
textual run --dev for CSS hot-reload)
Notes
- Ghostty is at
/usr/bin/ghostty
- The app is installed editable (
pip install -e .) so code changes apply on next launch
- Use
--screen flag to jump directly to: system, bundles, packages, updates, containers
- For CSS-only changes,
textual run --dev hot-reloads without restart
- Kill previous instance before re-launching if testing fresh state