Incorporate changes for version 1.1.0

This commit is contained in:
2026-02-25 14:05:59 -05:00
parent b2402566a5
commit 6c9c0e3dcf
15 changed files with 869 additions and 205 deletions

26
usr/local/bin/viewpdf.sh Executable file
View File

@@ -0,0 +1,26 @@
#!/bin/bash
# viewpdf.sh
if [ "$1" = "" ]
then
"You must supply a URL as an argument"
exit 1
fi
source /etc/openkiosk.conf
if echo "$1" | grep -q '^file:'
then
filepath=$(echo "$server_url"|cut -d"/" -f2-)
xpdf -fullscreen -cont -z width $filepath
else
if ! wget -q -O /dev/shm/target.pdf $1
then
kiosk_cleanup.sh
xmessage -buttons "Ok:1" -center "Failed to retrieve pdf file."
exit 1
else
xpdf -fullscreen -cont -z width /dev/shm/target.pdf
fi
fi