26 lines
822 B
Plaintext
26 lines
822 B
Plaintext
# drs.conf
|
|
|
|
# URL for OpenDRS
|
|
DRS_SERVER="http://localhost"
|
|
|
|
# Set to "1" to prevent screen blanking on some monitors that go to sleep and won't wake up.
|
|
INHIBIT_BLANK="0"
|
|
|
|
# For standard DRS functionality
|
|
APP_CMD="chromium-browser --test-type --ignore-certificate-errors --kiosk --no-first-run --check-for-update-interval=1 --simulate-upgrade --incognito $DRS_SERVER"
|
|
ALIVE_STRING="chromium-browse"
|
|
KILL_CMD="killall chromium-browser"
|
|
CLEANUP_CMD="rm -rf ~/.{config,cache}/chromium/"
|
|
|
|
# Notes
|
|
# --test-type will ignore any warnings and
|
|
# --ignore-certificate-errors will allow you to kiosk any https-page without displaying certificate errors
|
|
|
|
#-----------------------------------------------------------------------
|
|
# For test use
|
|
#APP_CMD="xterm"
|
|
#ALIVE_STRING="xterm"
|
|
#KILL_CMD="killall xterm"
|
|
#CLEANUP_CMD="sleep 1"
|
|
|