File size: 391 Bytes
b2be154
 
33ea78e
b2be154
 
 
33ea78e
 
 
 
b2be154
 
33ea78e
b2be154
 
33ea78e
b2be154
 
33ea78e
b2be154
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

# 1. Start Virtual Monitor
Xvfb :1 -screen 0 1440x960x24 &
export DISPLAY=:1

# 2. Wait 1 second for the monitor to wake up (Prevents crashing)
sleep 1

# 3. Start Window Manager
fluxbox &

# 4. Start your App
python main.py &

# 5. Start VNC Server
x11vnc -display :1 -nopw -forever -quiet &

# 6. Start NoVNC
/usr/share/novnc/utils/launch.sh --vnc localhost:5900 --listen 7860