/etc/fonts/conf.avail/69-language-selector-ja.conf is in language-selector-common 0.188.
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>
<match target="font">
<test qual="all" name="family" compare="contains">
<string>Noto</string>
</test>
<test qual="all" name="family" compare="contains">
<string>JP</string>
</test>
<test qual="all" name="pixelsize" compare="less_eq">
<double>18</double>
</test>
<edit mode="assign" name="embeddedbitmap">
<bool>false</bool>
</edit>
<edit mode="assign" name="hintstyle">
<const>hintnone</const>
</edit>
</match>
</fontconfig>
|