summaryrefslogtreecommitdiffstats
path: root/abs/extra/web-on-linhes/web-on-linhes.sh
blob: 115d0b0a27608676c3329029d9c3d2bb3ff1abfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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
google-chrome --no-first-run --kiosk $@
#Once done, stops irxevent and stop_xss.sh
kill $irxPID
kill $xssPID