mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-17 19:56:21 +00:00
11 lines
260 B
Bash
Executable file
11 lines
260 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Create chromium profile directory
|
|
mkdir -p /app/chromium
|
|
|
|
# Openbox autostart
|
|
cat >~/.config/openbox/autostart <<- startup
|
|
while true
|
|
do
|
|
chromium --user-data-dir=/app/chromium ${MYVNC_CHROMIUM_OPTS} ${MYVNC_CHROMIUM_URL}
|
|
done
|
|
startup
|