20 lines
391 B
Bash
Executable File
20 lines
391 B
Bash
Executable File
#!/bin/bash
|
|
# kiosk_viewhtml
|
|
|
|
if [ "$1" = "" ]
|
|
then
|
|
"You must supply a URL as an argument"
|
|
exit 1
|
|
fi
|
|
|
|
source /etc/openkiosk.conf
|
|
|
|
if ! chromium --test-type --ignore-certificate-errors --kiosk \
|
|
--no-first-run --check-for-update-interval=1 --simulate-upgrade \
|
|
--incognito $1
|
|
then
|
|
kiosk_cleanup.sh
|
|
xmessage -buttons "Ok:1" -center "Failed to retrieve web page."
|
|
exit 1
|
|
fi
|