# justfile: convenience recipes for development

start-vnc:
    @echo "Run the manual VNC start script"
    bash .devcontainer/manual-start-vnc.sh

stop-vnc:
    @echo "Stop x11vnc and novnc proxy"
    pkill -f x11vnc || true
    pkill -f novnc_proxy || true
