| View previous topic :: View next topic |
| Author |
Message |
DArtagnan l33t


Joined: 30 Apr 2002 Posts: 942 Location: Israel, Jerusalem
|
Posted: Mon May 20, 2002 12:59 pm Post subject: Mozilla Haching |
|
|
Ok, i wrote a little script that keeps alive mozila:
| Code: |
#!/bin/bash
while [ 1 ]
do
MOZILLA=`ps -d | grep mozilla`
if [ "$MOZILLA" = "" ]
then
/usr/bin/mozilla
fi
done
|
Now the problem is how can I desable the URL field to make impossible to enter other address.
Any one?
Many Thanks
pacman _________________ All for one and one for All
--
MACPRO machine... |
|
| Back to top |
|
 |
Houdini Apprentice


Joined: 14 Jun 2002 Posts: 224 Location: New Mexico Tech, Socorro, NM
|
Posted: Fri Jun 28, 2002 6:48 am Post subject: |
|
|
The best way would be to break out the source for it. Edit out the URL entry.
Isn't that script going to eat processor? _________________ ^]:wq |
|
| Back to top |
|
 |
|