|
all u have to do is delete that lock file. wut i did was write a script file that checks for the lock file and then removes it before starting a new instance of firebird.
looks like this
if [ -h ~/.phoenix/default/*/lock ]
then
rm -f ~/.phoenix/default/*/lock
fi
firebird $1
and i put the file in /usr/bin/mozfirebird
edit: since ur using an icon u'll want to change the path of that icon to /usr/bin/mozfireird.
Last edited by eltongeoff; 10-22-2003 at 10:38 PM.
|