View Single Post
Old 6th April 2011
BSDfan666 BSDfan666 is offline
Real Name: N/A, this is the interweb.
Banned
 
Join Date: Apr 2008
Location: Ontario, Canada
Posts: 2,223
Default

The issue is antialiasing, or the lack of it.. 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>
Good luck.
Reply With Quote