Re: Help with Mozilla 1.5 in Gnome
From: Philip (noone_at_nowhere.org)
Date: 09/30/03
- Next message: Ed Murphy: "Re: How to make a script run every 10 minutes?"
- Previous message: Achim Linder: "Re: How to make a window stay on top in GNOME2"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 30 Sep 2003 14:53:49 -0700
Ed Murphy wrote:
> On Sun, 28 Sep 2003 03:12:31 -0500, Warren CHEN wrote:
>
>
>>Absolute Redhat Newbie. I recently upgrade Mozilla 1.2.1 to 1.5.
>>Everything is working fine except the follwoing 3 problems:
>>
>>1. everytime I tried to open a 2nd window by clicking the quick launch
>>icon, a message tells me the "profile is already in use" and instruct me
>>to create a new profile;
>
>
> You need some sort of script to manage things. I have a script in
> /usr/bin/mozilla which eventually runs the binary at
> /usr/lib/mozilla-1.2.1/mozilla-bin
>
> Someone else want to weigh in with more precise details?
Well if you look for documentation on the -remote option, then you can create a
launching script to do what you want and put it in the applet. here is something
I did to load a file into a new tab window.
#! /usr/bin/ksh
if /opt/mozilla/mozilla -remote 'ping()'
then
# a browser is already running, send message to load the file
/opt/mozilla/mozilla -remote "openFile(file:$1,new-tab)"
else
# no browser running, start one with the file requested
/opt/mozilla/mozilla "file:$1" &
fi
- Next message: Ed Murphy: "Re: How to make a script run every 10 minutes?"
- Previous message: Achim Linder: "Re: How to make a window stay on top in GNOME2"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|