Spaces:
Paused
Paused
File size: 640 Bytes
76c601b dd291ef 34d8a6f 76c601b 215f7f6 34d8a6f 76c601b 215f7f6 76c601b 34d8a6f 76c601b dd291ef |
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 --disable-gpu --disable-dev-shm-usage --disable-session-crashed-bubble --no-first-run --display=$DISPLAY |