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
Idle function [Solved]
Forum rules
Porteus Kiosk section of the forum is unmaintained now. Its kept in a 'read only' mode for archival purposes.
Please use the kiosk contact page for directing your queries: https://porteus-kiosk.org/contact.html
Porteus Kiosk section of the forum is unmaintained now. Its kept in a 'read only' mode for archival purposes.
Please use the kiosk contact page for directing your queries: https://porteus-kiosk.org/contact.html
Idle function [Solved]
Last edited by zxcv0101 on 21 Apr 2015, 15:45, edited 1 time in total.
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Re: Idle function
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:
replace sleep 600 to your value (in seconds).
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
) &
Please add [Solved] to your thread title if the solution was found.
Re: Idle function
Ahh! thanks for the quick responce!