[Kde-kiosk] keep konqueror running

Martijn Klingens klingens at kde.org
Wed Jun 15 23:36:26 CEST 2005


On Tuesday 14 June 2005 20:39, Thiago Macieira wrote:
> Right. It is off-topic.

I'd say that since this is a typical kiosk-scenario it's not all that 
off-topic. Kiosk is more than just the lockdown framework, it's also about 
running KDE on kiosks :)

> while true; do
>   dcop | grep -q konqueror || konqueror
>   sleep 10s
> done

Alternatively, if you don't like polling and can control the launch of the 
first instance:

    while true
    do
        konqueror --nofork
    done

The nofork makes the konqueror invocation wait until it exits instead of 
running it in the background.

-- 
Martijn


More information about the kde-kiosk mailing list