Skip to content

Commit

Permalink
add fonts config file with anti-alias
Browse files Browse the repository at this point in the history
  • Loading branch information
gmas committed May 26, 2014
1 parent 46963d7 commit ce298b8
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions fonts/.config/fontconfig/fonts.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font" >
<edit mode="assign" name="autohint" >
<bool>true</bool>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="rgba" >
<const>none</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hinting" >
<bool>false</bool>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hintstyle" >
<const>hintnone</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="antialias" >
<bool>true</bool>
</edit>
</match>
</fontconfig>

0 comments on commit ce298b8

Please sign in to comment.