/etc/fonts/conf.avail/90-fonts-nanum-extra.conf is in fonts-nanum-extra 3.020-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 20 21 | <?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- workaround for wrong style and weight -->
<match target="scan">
<test name="fullname" qual="any" compare="eq">
<string>NanumMyeongjo ExtraBold</string>
<string>NanumMyeongjoExtraBold</string>
<string>나눔명조 ExtraBold</string>
<string>NanumGothic ExtraBold</string>
<string>NanumGothicExtraBold</string>
<string>나눔고딕 ExtraBold</string>
</test>
<edit name="style" mode="assign">
<string>ExtraBold</string>
</edit>
<edit name="weight" mode="assign">
<const>extrabold</const>
</edit>
</match>
</fontconfig>
|