Updated VERSION.txt and renamed executables

This commit is contained in:
2026-02-25 14:18:42 -05:00
parent 6c9c0e3dcf
commit 597a885b8d
7 changed files with 26 additions and 25 deletions

19
usr/local/bin/kiosk_viewhtml Executable file
View File

@@ -0,0 +1,19 @@
#!/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