Spaces:
Paused
Paused
Create start.sh
Browse files
start.sh
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
# Start TurboVNC server
|
| 3 |
+
/opt/TurboVNC/bin/vncserver :1 -geometry 1280x1024 -depth 24 -SecurityTypes None
|
| 4 |
+
|
| 5 |
+
# Start Fluxbox
|
| 6 |
+
startfluxbox &
|
| 7 |
+
|
| 8 |
+
# Start Chromium
|
| 9 |
+
google-chrome --no-sandbox --disable-gpu --disable-dev-shm-usage \
|
| 10 |
+
--disable-session-crashed-bubble --no-first-run --start-maximized --display=:1 &
|
| 11 |
+
|
| 12 |
+
# Start noVNC
|
| 13 |
+
/usr/share/novnc/utils/launch.sh --vnc localhost:5901 --listen $NOVNC_PORT
|