The preferences dialog can be opened by the toolbar or through the "Program" menu. The dialog is divided into two tabs described in the following text.
If you are using Mozilla you may want to define mozilla "%s",
but this will let you launch only the first clicked URL. All following
URL clicks will launch the Mozilla profile manager. Jim Philips suggested
the following script to automatically launch URLs in an already existing
Mozilla browser window. Save this script to the directory of your choice and
configure Liferea to launch URLs by calling this script and the URL
as the first parameter.
#!/bin/bash MOZILLA=/usr/local/bin/mozilla if ($MOZILLA -remote "ping()"); then $MOZILLA -remote "openurl($1, new-tab)" else $MOZILLA $1 fi
Important: Paul Newport reported that Firefox 0.9 changed the -remote syntax. Now a -a firefox has to be added right before the -remote parameter.