I would like to use aliased fonts in my IDE (geany), while still using anti-aliased fonts in other applications. I remember doing this for emacs (unfortunately I don't remember how I did that). How do I do that?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

The trick would be to override your IDE's display font settings to a custom settings that your ide is setup as... in a configuration file.

Xft is the rendering method of the fonts used by GNOME and also by other Xft-aware applications.

In order to configure Xft for the other applications you should configure the file .Xresources in your home directory like that:

Xft.antialias: 1
Xft.dpi: 96
Xft.hinting: 1
Xft.hintstyle: hintfull
Xft.rgba: rgb
Xft.lcdfilter: lcddefault

:)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.