|
Disable subpixel antialiasing?
Subpixel antialiasing doesn't look very good on my monitor because I get color "ringing". (Subpixel is when red and blue pixels are used on the sides of font dots to try and smooth diagonal/curved lines... you can see this more easily by using "xmag" or "kmag" and zooming into some text on the screen).
I would like to disable subpixel (RGBA) and just use greyscale antialiasing instead. On some systems, I had success by use adding this to my .fonts.conf file:
<match target="font" >
<edit mode="assign" name="rgba" >
<const>off</const>
</edit>
</match>
Normally such a construct would immediately take effect on any new application launched that uses freetype/fontconfig. (I have also used "none" instead of "off"). However, this doesn't appear to work on this Mandriva 2009.1 system! I even tried it in /etc/fonts/conf.d and it doesn't do anything there either.
Documentation for fontconfig is really spotty. I have spent many hours fighting this to no avail. Am I missing something? Thanks!
|