Hello all,
this is maybe a bit off topic, but is there a way to check if the
konqueror webbrowser is running and if not start it up again? with
firefox i was able to do this with this shell script:
#!/bin/bash
while true ; do
if ! firefox -remote "ping()" 2> /dev/null; then
firefox;
fi
done
greetings,
Nicolas