blob: 6e5054da0eb63edff9870b017f11d701bfb220a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-firebird/files/MozillaFirebird,v 1.1 2003/06/02 21:40:42 brad Exp $
# This is the Gentoo Phoenix startup script
# Additions, suggestions?
# contact phoen][x <phoenix@gentoo.org>
export MOZILLA_FIVE_HOME="/usr/lib/MozillaFirebird"
FIREBIRD_PATH="/usr/lib/MozillaFirebird"
if [ -z "`/bin/ps x | /bin/grep \"[0-9] ${FIREBIRD_PATH}/MozillaFirebird-bin\"`" ]; then
# No MozillaFirebird running
${FIREBIRD_PATH}/MozillaFirebird $@
else
# MozillaFirebird running - open a new window
${FIREBIRD_PATH}/MozillaFirebird -remote "openURL($@ ,new-window)"
fi
|