After installing kde-standard on my Ubuntu 12.04,web fonts(both Firefox and Chrome) turned to ugly both in Gnome and KDE desktops.How do I get back good looking web fonts.
Asked
Active
Viewed 3,730 times
1 Answers
4
You need to edit /home/yourusername/.fonts.conf.
Chances are Hinting has been changed, and you need to change it back to hintslight.
Here's how mine looks:
<?xml version="1.0"?><!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit mode="assign" name="rgba">
<const>none</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="hinting">
<bool>true</bool>
</edit>
</match>
<match target="font">
<edit mode="assign" name="hintstyle">
<const>hintslight</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="antialias">
<bool>true</bool>
</edit>
</match>
</fontconfig>

SuperMatt
- 4,003
hintingstyle=hintfull
. So, i have to choose - Droid fonts or Ubuntu fonts... – warvariuc Oct 17 '13 at 15:01