djcev.com

//

Git Repos / dotfiles / config / fontconfig / fonts.conf

Last update to this file was on 2021-12-08 at 04:19.

Show fonts.conf

<?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.
Taken from https://gist.github.com/codebrainz/902717
-->
<fontconfig>
<match target="font">
<test name="spacing" compare="eq">
<const>mono</const>
</test>
<edit name="embolden" mode="assign">
<bool>false</bool>
</edit>
</match>
<match target="font">
<edit name="antialias" mode="assign">
<bool>true</bool>
</edit>
</match>
<match target="font">
<edit name="hinting" mode="assign">
<bool>true</bool>
</edit>
</match>
<match target="font">
<edit name="hintstyle" mode="assign">
<const>hintfull</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="lcdfilter">
<const>lcddefault</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="rgba">
<const>rgb</const>
</edit>
</match>
</fontconfig>

Return to the top of this page or return to the overview of this repo.

Log fonts.conf

Date Commit Message Author + -
2021-12-08 Initial commit. Dotfiles, scripts, basic Makefile. cev +42  

Return to the top of this page or return to the overview of this repo.