Skip to content

Instantly share code, notes, and snippets.

@codebrainz
Created April 4, 2011 23:37
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save codebrainz/902717 to your computer and use it in GitHub Desktop.
Save codebrainz/902717 to your computer and use it in GitHub Desktop.
Font configuration file to override "emboldening" of fonts without a bold version.
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!--
This overrides what's in /etc/fonts/conf.d/90-synthetic.conf for
"faking" bold fonts, but only for monospace fonts.
-->
<fontconfig>
<match target="font">
<test name="spacing" compare="eq">
<const>mono</const>
</test>
<edit name="embolden" mode="assign">
<bool>false</bool>
</edit>
</match>
</fontconfig>
@codebrainz
Copy link
Author

Copy to file ~/.fonts.conf. I think it goes in ~/.config/fontconfig/fonts.conf on more recent fontconfig versions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment