Spaces:
Paused
Paused
File size: 554 Bytes
193f3c1 e9795e8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#!/bin/bash
# Start Xvfb for virtual display
Xvfb $DISPLAY -screen 0 1280x1024x16 &
# Wait for Xvfb to start
sleep 2
# Start Fluxbox as a minimal window manager
fluxbox &
# Start x11vnc with logging and retry mechanism
x11vnc -display $DISPLAY -nopw -forever -shared -rfbport $VNC_PORT -o $X11VNC_LOG &
# Wait for x11vnc to initialize
sleep 2
# Start noVNC to provide web access
/usr/share/novnc/utils/launch.sh --vnc localhost:$VNC_PORT --listen $NOVNC_PORT &
# Start Brave Browser with DBUS disabled
brave-browser --no-sandbox --display=$DISPLAY |