| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #!/bin/bash
- #
- # Copyright (c) 2021 Clementine Computing LLC.
- #
- # This file is part of PopuFare.
- #
- # PopuFare is free software: you can redistribute it and/or modify
- # it under the terms of the GNU Affero General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # PopuFare is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU Affero General Public License for more details.
- #
- # You should have received a copy of the GNU Affero General Public License
- # along with PopuFare. If not, see <https://www.gnu.org/licenses/>.
- #
- # This is the front end interface to the PIU that will run chromium
- # browser (on startup) and ultimately connect to a local web
- # server serving up the passenger facing interface
- #
- # This assumes it will be run by xinit without another window manager running. For example:
- #
- # xinit ./start-kiosk.sh
- #
- export BASEDIR=/home/pi
- export DISPLAY=:0
- export fqADDRESS="http://127.0.0.1:8001"
- /usr/bin/matchbox-window-manager \
- -use_cursor no \
- -use_titlebar no &
- # clear out warning bar on chromium
- #
- tmpfn=`mktemp`
- jq '.profile.exited_cleanly = true' $BASEDIR/.config/chromium/Preferences | jq '.profile.exit_type = "Normal"' > $tmpfn
- mv $tmpfn $BASEDIR/.config/chromium/Preferences
- # turn off screensave/screen blanking
- #
- xset s noblank
- xset s off
- xset -dpms
- # hide mouse after 0.5 seconds of idle time
- #
- unclutter -idle 0.05 -root &
- # hide mouse completely
- #
- #unclutter -root &
- rm -f /tmp/kiosk.info
- touch /tmp/kiosk.info
- echo "DISPLAY=$DISPLAY" >> /tmp/kiosk.info
- echo "XAUTHORITY=$XAUTHORITY" >> /tmp/kiosk.info
- # start chromium in kiosk mode
- #
- #/usr/bin/chromium-browser --noerrdialogs --disable-infobars --kiosk ./html/index.html
- #
- # --disable-application-cache \
- /usr/bin/chromium-browser \
- --simulate-outdated-no-au='Tue, 31 Dec 2999 23:59:59 GMT' \
- --no-sandbox \
- --test-type \
- --noerrdialogs \
- --disable-infobars \
- --aggressive-cache-discard \
- --incognito \
- --disable-pinch \
- --overscroll-history-navigation=0 \
- --disable-component-update \
- --disable-gpu \
- --kiosk \
- $fqADDRESS
- # refresh
- #
- #xdotool keydown ctrl+r; xdotool keyup ctrl+r;
|