#!/bin/sh #Script to facilitate Web On LinHES #Runs irxevent irxevent /etc/wol-lircrc & irxPID=$! #Stops xscreensaver from running. stop_xss.sh & xssPID=$! #Launches chrome in full screen (sleep 1; wmctrl -r "Google Chrome" -b add,fullscreen) & google-chrome --no-first-run --kiosk $@ #Once done, stops irxevent and stop_xss.sh kill $irxPID kill $xssPID