Page 1 of 1

Idle function [Solved]

Posted: 21 Apr 2015, 13:35
by zxcv0101
Hi

The Idle function does not seem to work as intended, atleast not for me.
I am running Porteus Kiosk 3.3 created from the ISO I just downloaded and the idle function resets the browser once but just once.

has this happened to anyone else?

Best regards zxcv0101

Re: Idle function

Posted: 21 Apr 2015, 14:42
by fanthom
answer is here:
http://forum.porteus.org/viewtopic.php?f=103&t=3159

if you want to force resetting the firefox no matter of user activity then remaster the ISO and add following function to /etc/rc.d/rc.local:

Code: Select all

(
while true; do
sleep 600
killall firefox
done
) &
replace sleep 600 to your value (in seconds).

Re: Idle function

Posted: 21 Apr 2015, 15:45
by zxcv0101
Ahh! thanks for the quick responce!