Hi all, I would like to get back the old fonts in my Pharo image (please see attachment), any tips or script? Cheers, Hernán
On Tue, May 11, 2010 at 6:07 AM, Hernán Morales Durand < hernan.morales@gmail.com> wrote:
Hi all,
I would like to get back the old fonts in my Pharo image (please see attachment), any tips or script?
Which are the old ? TrueType ? or what it was before TrueType (what it is in core)? To put TrueType again, be sure to have the Dejavu fonts and then evaluate: | font codeFont titleFont | FreeTypeFontProvider current updateFromSystem. font := LogicalFont familyName: 'DejaVu Sans' pointSize: 10. codeFont := LogicalFont familyName: 'DejaVu Sans Mono' pointSize: 9. titleFont := LogicalFont familyName: 'DejaVu Sans' pointSize: 11. Preferences setListFontTo: font; setMenuFontTo: font; setCodeFontTo: codeFont; setButtonFontTo: font; setSystemFontTo: font; setWindowTitleFontTo: titleFont. Now what I don't know is how to come back to the fonts that were in the kernel, I mean, how to disable TrueType fonts. Someone know ? Cheers Mariano Cheers,
Hernán
_______________________________________________ Pharo-users mailing list Pharo-users@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
Hi Mariano 2010/5/11 Mariano Martinez Peck <marianopeck@gmail.com>:
On Tue, May 11, 2010 at 6:07 AM, Hernán Morales Durand <hernan.morales@gmail.com> wrote:
Hi all,
I would like to get back the old fonts in my Pharo image (please see attachment), any tips or script?
Which are the old ?  TrueType ? or what it was before TrueType (what it is in core)?
I don't know their name, they were included by default in PharoCore 0.1 and earlier 1.0 images (see the attached screenshot). I have a really slow machine and with those fonts there were a really good performance. Hernán
I don't know, can you try evaluating: StrikeFont installDejaVu Maybe Henrik can help you. Cheers Mariano ps: what are you doing wake up at this argentinian time ? ;) On Tue, May 11, 2010 at 9:59 AM, Hernán Morales Durand < hernan.morales@gmail.com> wrote:
Hi Mariano
2010/5/11 Mariano Martinez Peck <marianopeck@gmail.com>:
On Tue, May 11, 2010 at 6:07 AM, Hernán Morales Durand <hernan.morales@gmail.com> wrote:
Hi all,
I would like to get back the old fonts in my Pharo image (please see attachment), any tips or script?
Which are the old ? TrueType ? or what it was before TrueType (what it
is
in core)?
I don't know their name, they were included by default in PharoCore 0.1 and earlier 1.0 images (see the attached screenshot). I have a really slow machine and with those fonts there were a really good performance.
Hernán
_______________________________________________ Pharo-users mailing list Pharo-users@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
participants (2)
-
Hernán Morales Durand -
Mariano Martinez Peck