dotfiles/fonts/.config/fontconfig/fonts.conf

38 lines
727 B
Text
Raw Normal View History

2020-04-27 19:44:39 +02:00
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<match target="font">
<edit name="hinting" mode="assign">
<bool>true</bool>
</edit>
<edit name="hintstyle" mode="assign">
<const>hintfull</const>
</edit>
<edit name="antialias" mode="assign">
<bool>true</bool>
</edit>
<edit name="rgba" mode="assign">
<const>rgb</const>
</edit>
<edit name="lcdfilter" mode="assign">
<const>lcddefault</const>
</edit>
</match>
<dir>~/.fonts</dir>
2020-05-13 06:58:03 +02:00
<match target="pattern">
<test qual="any" name="family">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Ubuntu</string>
</edit>
</match>
2020-04-27 19:44:39 +02:00
</fontconfig>