1
0
forked from extern/nix-config

Remove fontconfig

Manually overriding fonts caused problems in some applications. With
DejaVu and other common fonts installed, there *shouldn't* be a need to
use fontconfig anymore, although I haven't extensively tested this.
This commit is contained in:
Donovan Glover 2018-10-03 15:43:17 -04:00
parent 4e65100b5e
commit 75b988d7ea
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,23 +0,0 @@
<?xml version="1.0"?>
<!--
New Start: A modern Arch workflow built with an emphasis on functionality.
Copyright (C) 2017 Donovan Glover
-->
<!DOCTYPE fontconfig SYSTEM "/etc/fonts/fonts.dtd">
<fontconfig>
<match>
<edit mode="prepend" name="family"><string>Noto Sans</string></edit>
</match>
<match target="pattern">
<test qual="any" name="family"><string>serif</string></test>
<edit name="family" mode="assign" binding="same"><string>Noto Serif</string></edit>
</match>
<match target="pattern">
<test qual="any" name="family"><string>sans-serif</string></test>
<edit name="family" mode="assign" binding="same"><string>Noto Sans</string></edit>
</match>
<match target="pattern">
<test qual="any" name="family"><string>monospace</string></test>
<edit name="family" mode="assign" binding="same"><string>Noto Mono</string></edit>
</match>
</fontconfig>