Around 19 o''clock on Mar 3, Grigori Goronzy wrote:> So, what are the right values for thin/normal/bold fonts? I also tried > using a string and "bold" as the value, no luck either.You can use the const elements: <const>medium</const> I''d do your test as: <match target="font"> <test name="weight" compare="more"><const>medium</const></test> <edit name="antialias"><bool>true</bool></edit> </match> Use the font target for all changes to how a particular font is rendered and pattern target for changes in how a font is selected from those available. -keith Keith Packard Cambridge Research Lab Hewlett Packard
Hi, I''d like to antialias all bold fonts. The ''weight'' property requires an integer(well, the docs says so...), so I put into my ~/.fonts.conf:> <match target="pattern"> > <test qual="all" name="weight" compare="more"><int>500</int></test> > <edit name="antialias" mode="assign"><bool>true</bool></edit> > </match>(500 should be the typographic ''thickness factor'' for normal weighted fonts, at least I read this in some css reference) So, what are the right values for thin/normal/bold fonts? I also tried using a string and "bold" as the value, no luck either. thanks for the help in advance greg