4.2.1 Putting a background picture
Although the white background is nice, you may want to put your own background picture for Pharo. Just like you do in with the Operating System wallpapers. So, to do this you have two options:
1) Having a .jpg file in your image/changes directory with the name matching the theme name will load upon theme change (Watery 2.jpg for instance). The default Pharo images have Watery 2 as default theme. Thus, you should name the file "Watery 2.jog".
2) Evaluating the following code:
World backgroundImage: (ImageReadWriter formFromFileNamed: 'pharoBackground.png') layout: #scaled
In this case, the file "pharoBackground.png" also has to be in the same directory where the image is. Of course, you can adapt it and put the whole (absolute) path to a file. For example:
World backgroundImage: (ImageReadWriter formFromFileNamed: '/Users/mariano/Pharo/pharoBackground.png') layout: #scaled