-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Labels
Description
In the font config file we have:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "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>
I believe Noto Mono has been renamed Noto Sans Mono. I noticed that monospace fonts weren't working in Chrome. The command fc-match monospace was also not returning Noto Mono but was returning Noto Sans. I then switched the above to Noto Sans Mono, refreshed the font-cache and re-launched chrome and they were working.
Confirm this if you can. http://patorjk.com/software/taag/#p=display&f=Graffiti&t=Type%20Something%20 to see a site that has monospace fonts.
Reactions are currently unavailable