View Single Post
Old 6th April 2011
nihonto nihonto is offline
Fdisk Soldier
 
Join Date: May 2008
Posts: 65
Default

Quote:
Originally Posted by BSDfan666 View Post
The issue is antialiasing, or the lack of it.
Jepp, you're right!

Quote:
Originally Posted by BSDfan666 View Post
you can fix this using a .fonts.conf or by setting Xft.antialias: true in your .Xdefaults/.Xresources file.

Code:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
	<match target="font">
		<edit mode="assign" name="antialias">
			<bool>true</bool>
		</edit>
	</match>
</fontconfig>
Hmmm, the .fonts.conf Vermaden proposed contains these lines:

Quote:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">

<fontconfig>

<!-- antialias all fonts -->
<match target="font">
<edit name="antialias" mode="assign"><bool>true</bool></edit>
<edit name="hinting" mode="assign"><bool>false</bool></edit>
<edit name="hintstyle" mode="assign"><int>0</int></edit>
<edit name="dpi" mode="assign"><double>75</double></edit>
<edit name="rgba" mode="assign"><const>none</const> </edit>
</match>
I thought that should solve the problem ...

Quote:
Originally Posted by BSDfan666 View Post
Good luck.
THX
Reply With Quote