Hi,

I just heard that mozilla and mozilla-firebird don't open a new window
once they are already running. I solved this quite some time ago and I
showed it to a friend so I decided on posting it here.

I hope it get's included in the mandrake rpms.



# Han
-- 
http://www.xs4all.nl/~hanb/software
http://www.xs4all.nl/~hanb/documents/quotingguide.html
#!/bin/sh
if /usr/local/MozillaFirebird/MozillaFirebird -remote "ping()"; then
    if [ -z "$@" ]; then
        exec /usr/local/MozillaFirebird/MozillaFirebird -remote 
"openURL(www.boetes.org, new-window)"
    else
        exec /usr/local/MozillaFirebird/MozillaFirebird -remote "openURL($@, 
new-window)"
    fi
else
    exec /usr/local/MozillaFirebird/MozillaFirebird "$@"
fi

Reply via email to