blob: 64db85f79ef620b7aa66cf1401df90ee9728766c (
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-bin/files/MozillaFirebird,v 1.2 2003/06/07 15:47:35 brad Exp $
# This is the Gentoo Phoenix startup script
# Additions, suggestions?
# contact phoen][x <phoenix@gentoo.org>
export MOZILLA_FIVE_HOME="/opt/MozillaFirebird"
FIREBIRD_PATH="/opt/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
|