I am working on a new installer for Folding@Home to release all over the net to get us more contributers. I have included a screenshot at the bottom of the screen
I have all the scripts setup and ready to go, but I have a few questions to get it working
1. In mc68ks script it uses this command ./fah4 -local -configonly, is there a way to get that to install without asking for the users information, so I can set that later?
2. If I have 2 varaibles for team and username, how can I write those to the folding@home prefs, or actually what is the folding@home prefs?
3. This doesn't work in my cocoa app, what should it be? Is that the right way to launch a script?
Hopefully I will get this working soon
I have all the scripts setup and ready to go, but I have a few questions to get it working
1. In mc68ks script it uses this command ./fah4 -local -configonly, is there a way to get that to install without asking for the users information, so I can set that later?
2. If I have 2 varaibles for team and username, how can I write those to the folding@home prefs, or actually what is the folding@home prefs?
3. This doesn't work in my cocoa app, what should it be? Is that the right way to launch a script?
PHP:
NSTask *theTask = [[NSTask alloc] init];
[theTask setLaunchPath:@"/Volumes/folding/.setup/script1.command"];
[theTask launch];
Hopefully I will get this working soon