Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Developer Workspace Install script
Last updated at 3:27 pm UTC on 18 May 2006

%
"MAIN INSTALLATION PROGRAM"
'http://www.saltypickle.com/Home/uploads/SqueakInstaller-jrp.4.cs' asUrl retrieveContents contentStream fileIn.!


basicPreferences := [
Preferences togglePreference: #duplicateControlAndAltKeys.
ActiveWorld color: (Color fromRgbTriplet: #(0.0 0.226 0.516)).
Display newDepth: 32.
Preferences setListFontTo: ((TextStyle named: #BitstreamVeraSans) fontOfPointSize: 9).
Preferences setMenuFontTo: ((TextStyle named: #BitstreamVeraSans) fontOfPointSize: 9).
Preferences setCodeFontTo: ((TextStyle named: #BitstreamVeraSans) fontOfPointSize: 9).
Preferences setPreference: #projectViewsInWindows toValue: false.
Preferences setPreference: #showSharedFlaps toValue: false].


installer := SqueakInstaller new
preInstallation: basicPreferences;
install.