On Wed, Dec 17, 2003 at 01:10:49PM +1300, Sharrea Day wrote:
> On Wed, 17 Dec 2003 05:20, Todd Slater wrote:
> > with some easy config, thunderbird 0.4 can launch url's.
> >
> > http://www.deftone.com/blogzilla/archives/mozilla_thunderbird_04_released
> >.html
> 
> Thanks for that Todd... been waiting for this feature!
> 
> Bit of a bummer that the script copied from the URL wants to use another 
> profile if firebird is already running tho.  I changed it to konqueror so I 
> don't have to worry about whether or not firebird is already running.
> 
> Cheers
> Sharrea

Sharrea,

That choose profile is annoying. I use this script which I called
/usr/bin/firebird to open links in a new tab. If you prefer, you can
substitute new-window. Everything I use that launches URL's calls this
script.

Todd

#/bin/bash
browserPath="/usr/local/MozillaFirebird/MozillaFirebird"
url="$@"

$browserPath -remote "ping()"

# $? = false if running, true if not
if [ $? = 0 ] ; then
        exec $browserPath -remote openURL"($url,new-tab)"
else
        $browserPath $url
fi
exit
                

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com

Reply via email to