/usr/share/fontconfig/conf.avail/45-Hack.conf is in fonts-hack 3.003-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- Declare Hack a monospace font -->
<alias>
<family>Hack</family>
<default><family>monospace</family></default>
</alias>
<!-- if this file is put in user’s configuration, unset sans-serif family -->
<match>
<test compare="eq" name="family">
<string>Hack</string>
</test>
<test compare="eq" name="family">
<string>sans-serif</string>
</test>
<edit mode="delete" name="family"/>
</match>
</fontconfig>
|