1 line
1.0 KiB
Smalltalk
1 line
1.0 KiB
Smalltalk
from: 'http://files.squeak.org/6.1alpha/Squeak6.1alpha-22185-64bit/Squeak6.1alpha-22185-64bit.zip'!
|
|
|
|
World submorphs
|
|
select: [:m |
|
|
(m isKindOf: PreferenceWizardMorph) or:
|
|
[m isSystemWindow and: [m label beginsWith: 'Welcome to Squeak']]]
|
|
thenDo: [:m | m delete].
|
|
!
|
|
|
|
"Preferences."
|
|
CommunityTheme createDark apply.
|
|
Model useColorfulWindows: true.
|
|
[Preferences setDemoFonts] valueSupplyingAnswer: true.
|
|
Cursor useBiggerCursors: true.
|
|
Preferences enable: #mouseOverForKeyboardFocus.
|
|
Preferences disable: #balloonHelpEnabled.
|
|
Preferences disable: #alternativeBrowseIt.
|
|
TextEditor autoEnclose: false.
|
|
Model windowActiveOnFirstClick: true.
|
|
!
|
|
|
|
MCMcmUpdater default doUpdate: false!
|
|
Metacello new configuration: 'FFI'; load!
|
|
Installer squeaksource project: 'OSProcess'; install: 'OSProcess'!
|
|
Installer squeaksource project: 'CommandShell'; install: 'CommandShell'!
|
|
Installer squeaksource project: 'JSON'; install: 'JSON'!
|
|
|
|
Installer squeaksource project: 'Snarl'; install: 'Snarl'.
|
|
Project current instVarNamed: #uiManager put: nil.
|
|
!
|