Hey all you Mac-Happy people! Do you know about the problem with compiled guis and how they mess up your MB? Well I found the solution, originated in TGE, but I modded the file a little to work well. This program will delete all .dso files from your MarbleBlast directory. Only run if you want to, I assume no liability blah blah blah... Just don't run this in your copy of MBP. It'll disappear...
How to install:
1. Go to TextEdit
2. Press Shift+Command (Apple)+T
3. Paste this code:
Code:
#!/bin/sh
cd ~/Library/MarbleBlast/
for i in $(find . -type f \( -iname *.cs.dso \))
do
file=${i}
if [ -e $file ]
then
    echo Trashing ${file}
rm $file
fi
done
for i in $(find . -type f \( -iname *.gui.dso \))
do
file=${i}
if [ -e $file ]
then
    echo Trashing ${file}
    rm $file
fi
done
Save as DeleteDSOs.command, in the <username>/Library/MarbleBlast directory. Open whenever you want to delete all the DSO files from your MB folder in your Library folder.
If this eats your computer, get on your friend's computer and tell me
HiGuy
How to install:
1. Go to TextEdit
2. Press Shift+Command (Apple)+T
3. Paste this code:
Code:
#!/bin/sh
cd ~/Library/MarbleBlast/
for i in $(find . -type f \( -iname *.cs.dso \))
do
file=${i}
if [ -e $file ]
then
    echo Trashing ${file}
rm $file
fi
done
for i in $(find . -type f \( -iname *.gui.dso \))
do
file=${i}
if [ -e $file ]
then
    echo Trashing ${file}
    rm $file
fi
done
Save as DeleteDSOs.command, in the <username>/Library/MarbleBlast directory. Open whenever you want to delete all the DSO files from your MB folder in your Library folder.
If this eats your computer, get on your friend's computer and tell me
HiGuy
This signature is real code
Code:
function clientcmd12dothepq() {
commandToClient(LocalClientConnection, '34onthedancefloor');
}