Announcement

Collapse
No announcement yet.

Font is too bold

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Font is too bold

    I've fully updated many packages.
    Now bold font display on my screen is too bold....

    any solution?

    thx

    #2
    Re: Font is too bold

    I have changed my .fonts.config with
    Code:
    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <fontconfig>
        <match target="font" >
            <test name="family" >
                <string>AR PL ShanHeiSun Uni</string>
                <string>AR PL ShanHeiSun Uni MBE</string>
            </test>
            <!-- check to see if the pattern requested -->
            <test compare="more" target="pattern" name="weight" >
                <const>medium</const>
            </test>
            <!-- pretend the font is bold now -->
            <edit mode="assign" name="embolden" >
                <bool>true</bool>
            </edit>
        </match>
        <!--
        Disable antialias feature of AR PL ShanHeiSun Uni when pixelsize less than 17
        -->
        <match target="font" >
            <test name="family" >
                <string>AR PL ShanHeiSun Uni</string>
                <string>AR PL ShanHeiSun Uni MBE</string>
            </test>
            <edit name="antialias" >
                <bool>false</bool>
            </edit>
            <edit name="hinting" >
                <bool>true</bool>
            </edit>
            <edit name="autohint" >
                <bool>false</bool>
            </edit>
        </match>
        <match target="font" >
            <test name="family" >
                <string>AR PL ShanHeiSun Uni</string>
                <string>AR PL ShanHeiSun Uni MBE</string>
            </test>
            <test compare="more_eq" name="pixelsize" >
                <int>17</int>
            </test>
            <edit mode="assign" name="antialias" >
                <bool>true</bool>
            </edit>
            <edit mode="assign" name="hinting" >
                <bool>true</bool>
            </edit>
        </match>
    </fontconfig>
    and that worked for me. Also take a look at http://www.ubuntuforums.org/showthre...highlight=font for some more tips.

    Comment


      #3
      Re: Font is too bold

      thx awakatanka

      however it doen't work for me....

      all bold english font still looks too bold for me....

      Comment


        #4
        Re: Font is too bold

        I follow your link....and found 1 of the solution work for me...

        http://paste.ubuntu-nl.org/8478

        Comment

        Working...
        X