alpine/chromium/20-chromium.sh

11 lines
260 B
Bash
Raw Normal View History

2025-01-26 03:33:34 +00:00
#!/usr/bin/env bash
# Create chromium profile directory
mkdir -p /app/chromium
# Openbox autostart
2025-01-26 03:33:34 +00:00
cat >~/.config/openbox/autostart <<- startup
while true
do
chromium --user-data-dir=/app/chromium ${MYVNC_CHROMIUM_OPTS} ${MYVNC_CHROMIUM_URL}
done
startup