Я не хочу відключати растрові шрифти, включаючи їх 70-no-bitmaps.conf
, оскільки я використовую їх у xfce4-терміналі (тобто Fixed
шрифті). Тому я знайшов рішення в29-replace-bitmap-fonts.conf
/etc/fonts/conf.avail/29-replace-bitmap-fonts.conf:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- Replace generic bitmap font names by generic font families.
These font-families will get replaced by other rules and
default to scaled ones. -->
<match target="pattern" name="family">
<test name="family" qual="any">
<string>Helvetica</string>
</test>
<edit mode="assign" name="family">
<string>Arial</string>
<string>Liberation Sans</string>
<string>sans-serif</string>
</edit>
</match>
</fontconfig>
І тоді я включив цю конфігурацію:
ln -s /etc/fonts/conf.avail/29-replace-bitmap-fonts.conf /etc/fonts/conf.d/29-replace-bitmap-fonts.conf
Для користувачів Gentoo:
eselect fontconfig enable 29-replace-bitmap-fonts.conf