Disable Gitea workflows and stabilize VNC startup

Pause automated builds while updating the image, and improve VNC startup/logging with a one-way clipboard bridge for reliable browser sync.
This commit is contained in:
2026-03-01 12:21:22 +01:00
parent ba48d1c8d1
commit 2742058a32
9 changed files with 473 additions and 18 deletions

5
log-prefix.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
# Wrapper script to prefix output with program name
PROGRAM_NAME="$1"
shift
exec "$@" 2>&1 | stdbuf -oL -eL sed "s/^/[$PROGRAM_NAME] /"