Comment 4 for bug 29198

Revision history for this message
Machine Screw (machine-screw) wrote :

This apears to be a problem with the font.conf file in genral
currently there was a person in the IRC that figured it out this is on a Kubuntu Dapper flight 6 install after the latest update done on the date of this comment. Here is a screenshot what they looked like

http://i31.photobucket.com/albums/c383/satempler/konvimacscrw.png

and after

http://i31.photobucket.com/albums/c383/satempler/konvimacscrw2.png

here is the contents of the .font.conf file that fixed it i put it in /etc/fonts/local.conf to fix it for all of Xwindows including KDM

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- ~/.fonts.conf file to configure user font settings --><fontconfig>
<!-- Enable sub-pixel rendering --> <match target="font" >
  <test name="rgba" qual="all" >
   <const>unknown</const>
  </test>
  <edit mode="assign" name="rgba" >
   <const>rgb</const>
  </edit>
 </match>
<!-- Autohint fonts --> <match target="font" >
  <edit mode="assign" name="autohint" >
   <bool>true</bool>
  </edit>
 </match>
<!-- Don't autohint my terminal font --> <match target="font" >
  <test name="family" qual="any" >
   <string>Bitstream Vera Sans Mono</string>
  </test>
  <edit mode="assign" name="autohint" >
   <bool>false</bool>
  </edit>
 </match>
<!-- Antialias --> <match target="font" >
  <edit mode="assign" name="antialias" >
   <bool>true</bool>
  </edit>
 </match>
 <match target="font" >
  <edit mode="assign" name="hinting" >
   <bool>true</bool>
  </edit>
 </match>
 <match target="font" >
  <edit mode="assign" name="hintstyle" >
   <const>hintmedium</const>
  </edit>
 </match>
<!-- Alias Helvetica to be something less shit --> <match target="pattern" >
  <test name="family" qual="any" >
   <string>Helvetica</string>
  </test>
  <edit mode="assign" name="family" >
   <string>Bitstream Vera Sans</string>
  </edit>
 </match>
 <match target="font" >
  <edit mode="assign" name="rgba" >
   <const>none</const>
  </edit>
 </match>
</fontconfig>