Skip to content

Instantly share code, notes, and snippets.

@bldewolf
Created November 6, 2013 22:06
Show Gist options
  • Save bldewolf/7344960 to your computer and use it in GitHub Desktop.
Save bldewolf/7344960 to your computer and use it in GitHub Desktop.
Fontconfig file for avoiding using the terrible bitmap version of Helvetica.
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- Reject Helvetica bitmap fonts -->
<selectfont>
<rejectfont>
<pattern>
<patelt name="scalable"><bool>false</bool></patelt>
<patelt name="family"><string>Helvetica</string></patelt>
</pattern>
</rejectfont>
</selectfont>
</fontconfig>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment