diff --git a/en/gnome/docs/faq2.sgml b/en/gnome/docs/faq2.sgml index 8026491857..15379a1c04 100644 --- a/en/gnome/docs/faq2.sgml +++ b/en/gnome/docs/faq2.sgml @@ -1,6 +1,6 @@ - + %gnomeincludes; %includes; @@ -28,10 +28,12 @@
  • What window managers work well with GNOME 2.2?
  • Does GNOME 2.2 support anti-aliased fonts? -
  • How do I edit my GNOME 2 menus? -
  • How do I use GTK+ 2 resource settings for +
  • How can I control what fonts are anti-aliased? + +
  • How do I edit my GNOME 2 menus? +
  • How do I use GTK+ 2 resource settings for GTK+ 2 applications when not in a GNOME environment? -
  • How do I configure settings for GNOME 1.4 +
  • How do I configure settings for GNOME 1.4 applications under GNOME 2.2?

    Full Text

    @@ -438,10 +440,50 @@ Load "type1" 10. - How do I edit my GNOME 2 menus? + How can I control what fonts are anti-aliased? + +
    + +

    GNOME 2.2 makes use of Xft2 and fontconfig to handle + anti-aliasing. Fontconfig is a very powerful XML-based + font configuration package. You can create a + ~/.fonts.conf file that controls virtually + every aspect of fontconfig. For example, if you do not + want to anti-alias fonts smaller than 16 point, create + a ~/.fonts.conf with the following contents:

    + +
    +<?xml version="1.0"?>
    +<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    +<fontconfig>
    +
    +<match target="font">
    +        <test name="size" compare="less_eq">
    +                <double>16</double>
    +        </test>
    +        <edit name="antialias" mode="assign">
    +                <bool>false</bool>
    +        </edit>
    +</match>
    +</fontconfig>
    +                
    + +

    Refer to fontconfig(3) for more information.

    + + +
    + + + + 11. + + How do I edit my GNOME 2 menus? + + +
    @@ -455,16 +497,16 @@ Load "type1"
    - + - 11. + 12. How do I use GTK+ 2 resource settings for GTK+ 2 applications when not in a GNOME environment? - +
    @@ -490,16 +532,16 @@ Load "type1"
    - + - 12. + 13. How do I configure settings for GNOME 1.4 applications under GNOME 2.2? - +