summaryrefslogtreecommitdiffstats
path: root/abs/extra/web-on-linhes/web-on-linhes.sh
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2015-02-10 18:51:11 (GMT)
committerBritney Fransen <brfransen@gmail.com>2015-02-10 18:51:11 (GMT)
commite7460ef3cb124fb7149614b348f754e2b4f2f658 (patch)
tree2366cb9aaf6bcdb2ae5290ccfc86e783259b17dc /abs/extra/web-on-linhes/web-on-linhes.sh
parent10892c3e008eadbe8baf7359fa3a65fc7bb08feb (diff)
downloadlinhes_pkgbuild-e7460ef3cb124fb7149614b348f754e2b4f2f658.zip
linhes_pkgbuild-e7460ef3cb124fb7149614b348f754e2b4f2f658.tar.gz
linhes_pkgbuild-e7460ef3cb124fb7149614b348f754e2b4f2f658.tar.bz2
web-on-linhes: update stream list
change chrome command for kiosk changes add support for mv_ir.py wol-lircrc location
Diffstat (limited to 'abs/extra/web-on-linhes/web-on-linhes.sh')
-rw-r--r--abs/extra/web-on-linhes/web-on-linhes.sh14
1 files changed, 8 insertions, 6 deletions
diff --git a/abs/extra/web-on-linhes/web-on-linhes.sh b/abs/extra/web-on-linhes/web-on-linhes.sh
index 11098ba..7d9b99b 100644
--- a/abs/extra/web-on-linhes/web-on-linhes.sh
+++ b/abs/extra/web-on-linhes/web-on-linhes.sh
@@ -1,11 +1,13 @@
#!/bin/sh
#Script to facilitate Web On LinHES
#Runs irxevent
-irxevent /home/mythtv/.mythtv/wol-lircrc &
-#Stops xscreensaver from running.
+irxevent /etc/wol-lircrc &
+irxPID=$!
+#Stops xscreensaver from running.
stop_xss.sh &
-#Launches chromium in full screen
-chromium $@
+xssPID=$!
+#Launches chrome in full screen
+google-chrome --no-first-run --user-data-dir=/home/mythtv/.cache/google-chrome/Default/ --kiosk $@
#Once done, stops irxevent and stop_xss.sh
-killall irxevent
-killall stop_xss.sh
+kill $irxPID
+kill $xssPID