Bill Moseley wrote:
Two questions:
1) how can I disable AA completely?
It would probably be sufficient to disable them for the medium sizes.
For XftConfig you use something like this:
match
any size > 8
any size < 15
edit
antialias = false;
For: "fonts.conf" you need to translate this to XML:
<match target="font">
<test qual="any" name="size" compare="more">
<int>8</int>
</test>
<test qual="any" name="size" compare="less">
<int>15</int>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
Somebody please correct this if it has errors.
--
JRT
_______________________________________________
Fonts mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/fonts