up vote 1 down vote favorite
4
share [g+] share [fb]

I've been using linux mint 7 for a couple of weeks now and I'm pretty happy with it, but I wanted to try out other desktops, e.g. KDE/Xfce

I'm not sure if it's KDE's fault of Xfce's, but firefox's font rendering sucks now, it renders jagged/aliased fonts.

I'm using xfce right now,

My Xfce settings Manager > appearance > fonts settings roughly look like this:

Default Font:

     Sans | 9  

Rendring :

 [x] Enable anti-aliasing  

           Hinting: None  
   Sub-pixel Order: None  

But it's as if firefox ignores these settings!

link|improve this question

74% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Try editing your .fonts.conf file under your home directory (~/.fonts.conf).

This works well for me:

 <?xml version='1.0'?>
 <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
 <fontconfig>
  <match target="font" >
   <edit mode="assign" name="hinting">
    <bool>false</bool>
   </edit>
  </match>
 </fontconfig>
link|improve this answer
Awesome! this worked for me too, thanks! – hasen j Jul 27 '09 at 4:23
1  
Yeah, I find fonts.conf sort of overrides pretty much everything else, so I always look to it first for font problems. Glad it helped! – John T Jul 27 '09 at 4:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.