Ducasse / Cozy

A little package to create a more cozy working environment
7 stars 2 forks source link
pharo

Cozy (for Pharo 80 and above)

A little package to create a more cozy and productive working environment for Pharo.

It is based on Pharo-scripts from Cyril Ferlicot and probably QuickAccess from Torsten Bergman (I do not know since I started from pharo-scripts). But I want to thank them both. I made sure that Cozy can be loaded without impacting pharo-scripts to support cross-fertilization.

Cozy supports

Next version should

How to load manually

Metacello new
  baseline: 'Cozy';
  repository: 'github://Ducasse/Cozy/src';
  load

How to make it load automatically

Edit your preference settings for your Pharo 80 version and

StartupPreferencesLoader default executeAtomicItems: {          

    StartupAction
        name: 'Load Settings'
        code: [ Metacello new
            filetreeDirectory: '.....Cozy/src';
            baseline: 'Cozy';
            load 
        ]
        runOnce: true
}

I will check with Cyril why this is filetreeDirectory: