vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello, This morning I downloaded Slackware 10.0, and after hours of tweaking and compiling my favorite software, everything is working fine. For those of you who noticed, and don't like the different behaviour of Mozilla 1.7 (it will ask for another user profile when you start it more than once), here is an ugly hack: # mv /usr/bin/mozilla /usr/bin/mozilla.slack # touch /usr/bin/mozilla # chmod 755 /usr/bin/mozilla # vi /usr/bin/mozilla --- /usr/bin/mozilla #!/bin/sh MOZILLA="/usr/bin/mozilla.slack" if ps -f -u `whoami` | grep -v "grep" | grep "${MOZILLA}"; then if [ "$1" = "-compose" ]; then ${MOZILLA} -remote "xfeDoCommand (composeMessage)" elif [ "$1" = "-mail" ]; then ${MOZILLA} -remote "xfeDoCommand (openInbox)" elif [ "$1" = "" ]; then ${MOZILLA} -remote "xfeDoCommand (openBrowser)" else ${MOZILLA} $1 $2 $3 fi else ${MOZILLA} $1 $2 $3 fi |