Re: Ok, I made my browser choice
From: Ori Bernstein (ori_at_rogers-remove.com)
Date: 04/25/04
- Next message: Roeland Th. Jansen: "Re: problem with 9.1 live cd booting"
- Previous message: mjt: "Re: boot problems"
- In reply to: derelict: "Ok, I made my browser choice"
- Next in thread: houghi: "Re: Ok, I made my browser choice"
- Reply: houghi: "Re: Ok, I made my browser choice"
- Reply: Linønut: "Re: Ok, I made my browser choice"
- Reply: derelict: "Re: Ok, I made my browser choice"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Sun, 25 Apr 2004 21:42:08 GMT
On Sun, 25 Apr 2004 20:16:21 +0200, derelict wrote:
> I'm curious, can you get more than one instance of Firefox running under
> the same user on your system, without having to create a new profile for
> each instance?
Sometimes you need a script to do it.
The one I use is below:
-----------------
#!/bin/sh
FIREBIRD_CMD="/usr/local/bin/MozillaFirefox/firefox"
if [ "$1x" = "x" ]; then
URL="about:blank"
else
URL=$1
fi
FIREBIRD_REMOTE="openURL(${URL},new-window)"
${FIREBIRD_CMD} -remote "ping()" && $FIREBIRD_CMD -remote ${FIREBIRD_REMOTE}&& exit 0
${FIREBIRD_CMD} ${URL}
--------------------
Copy this into a file in /usr/bin, or somewhere else in $PATH, chmod +x
the script, and modify the FIREBIRD_CMD variable so it is the path to the
file you currently run to start firefox.
- Next message: Roeland Th. Jansen: "Re: problem with 9.1 live cd booting"
- Previous message: mjt: "Re: boot problems"
- In reply to: derelict: "Ok, I made my browser choice"
- Next in thread: houghi: "Re: Ok, I made my browser choice"
- Reply: houghi: "Re: Ok, I made my browser choice"
- Reply: Linønut: "Re: Ok, I made my browser choice"
- Reply: derelict: "Re: Ok, I made my browser choice"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|