In my much awaited but not yet deployed new fang-dangled snazzy TZP (30% smaller, 30% faster, with MOAR metrics), I am not just collecting font enumeration and sizes, but now also checking that any whitelist (or RFP's font vis) doesn't leak (as well as for missing bundled fonts in TB). But there is no need to check massive lists in TB, as most fonts are bundled: this would just adds lots of perf overhead
sample code
lists are snipped for brevity where stated
letfntMaster={// TB bundled"bundled":{"all":[// 118 win/mac/linux"Noto Sans Adlam","Noto Sans Balinese",// SNIP],"android":[],"linux":[// +16"Arimo","Cousine",// SNIP],"mac":[// +5"Noto Sans Armenian","Noto Sans Hebrew",// SNIP],"windows":[// +4"Noto Naskh Arabic",// SNIP],},// TB whitelist"allowlist":{"android":[],"linux":[],"mac":["AppleGothic","Apple Color Emoji",// SNIP],"windows":["Arial","Cambria Math"// SNIP],},// TB unexpected: to catch failures"blocklist":{"android":[],"linux":['Arial','Courier','Courier New','Noto Emoji','Noto Sans','Noto Serif','Noto Color Emoji','Noto Mono','Cantarell','DejaVu Sans','DejaVu Serif','Droid Sans','STIX','Symbola','Dingbats','FreeMono','Ubuntu',],"mac":["Apple Symbols","Avenir","Charter","Impact","Palatino","Rockwell",],"windows":["Calibri","Candara","Corbel","Impact","Ebrima","Gabriola",],},
so we end up with something like this, where the green [TB] notation means no bundled fonts were missing AND we didn't leak anything outside the whitelist (I call it an allowlist on the page so as to not be offensive). The bundled list (122) is a subset of allowed (155), which is a subset of the fonts tested (162 - which includes a fake random font as a poison pill)
Now windows/mac is simple - I can add expected system fonts since win7/macOS10.12 to the "blocklist" and if they are detected then the whitelist is failing.
But linux is trickier. My initial "blocklist"ed items are, I think fairly common, especially on ubuntu and fedora, but I am not super linux font savvy. Can you improve on this list (without going massive on it: smaller is better) - see code example
Designs
Child items
0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items
0
Link issues together to show that they're related.
Learn more.
@thorin so if I'm understanding this correctly you're looking for a list of fonts which are common (enough) on Linux systems but are not shipped w/ Tor Browser?
In that case one good starting point is probably the fonts shipped with Tails ( https://tails.boum.org/ ). From their we could expand out to popular distros. The steam hardware/software survey ( https://store.steampowered.com/hwsurvey ) suggests Ubuntu 22.04, Arch, Manjaro, and Linux Mint 21.1 being the most popular so some intersection there should be a good first set.
you're looking for a list of fonts which are common (enough) on Linux systems but are not shipped w/ Tor Browser?
Yup. Wouldn't be a very good test if it didn't detect a whitelist failure. So a cross section of non-allowed fonts on linux to cover as many distros as possible
Can you improve on this list (without going massive on it: smaller is better) - see code example
I think you already caught many of the common fonts.
DejaVu fonts are maybe the most common ones.
They are based on Bitstream, and some distributions still ship Bitstream Vera, too, but I don't have data to tell its spread.
Liberation is another very common one, but it has a big caveat: AFAIK, Arimo is Liberation Sans, Cousine is Liberation Mono, and Tinos is Liberation Serif.
And when I write "is" I mean it: I think they're the same, but with different licenses.
Another family is the "Free" family.
For example, even VLC defaults to Free Sans for CC on Linux. It used to, IIRC, but I've just checked and now VLC uses DejaVu Sans on my system.
I think their metrics are different from common fonts for other platforms, but I haven't actually compared them.
Then there are the TeX Gyre fonts: they provide alternatives to Palatino and other fonts you can normally find on macOS and Windows, but I think they are less common than the ones I wrote above.
Finally, many GNOME users have Cantarell, and Ubuntu users have the Ubuntu/Ubuntu Mono fonts.
I didn't want to use the later as I don't think it fits. Since TZP tests will used in resistor, then I thought it was best here.
But OK, tor forum it is. I have limited OSes and very limited linux know-how. But I've always wanted to leverage more users for specific tests to refine them (not that this issue is an actual test, just a knowledge grab). But I haven't dared ask outside arkenfox users (and they're not really TB orientated) - but I have thought of tor forum but held off - didn't know if it was appropriate.
Yeah we're kind of migrating discussion over there since it's generally pretty accessible/discoverable compared to our gigantic pile of gitlab issues and works well for threaded conversations. Ephemeral/short-term/realtime convo is better in #tor-browser-dev on OFTC IRC.
Liberation is another very common one, but it has a big caveat: AFAIK,
Arimo is Liberation Sans
Cousine is Liberation Mono
Tinos is Liberation Serif
No caveats here. The font names are different so you can't mix them up - i.e if you have Arimo but call Liberation Sans which you don't have, then it won't be found (you don't have it) - i.e either you have it or you don't
This was on windows, and I simply dropped the fonts into the firefox/fonts dir - I sourced the three fonts from the TB linux package, and the Liberation fonts (ttf) from https://github.com/liberationfonts/liberation-fonts/releases. I only bothered to test the regular
The dimensions don't matter, since you either have the named font or not. But FYI, @pierov, the sizes are slightly different, except for mono (pink dot) - this is why you choose a supreme award-winning patent-pending font string to test with like mine) and a F large size
Anyway, so far so good. I will add the three Liberation fonts
OT but TZP related. 12.5a2 or 12.5a3 changed something - just want to make sure it was deliberate: I am testing to see if this (and also widget fonts) is stable across all languages per platform - it looks promising and I can't wait for it to be upstreamed
edit: testing windows currently
this is 12.0.3 (current stable), also 12.5a1 (IDK about 12.5a2)
// FONTS: system fonts: 41dd8a29{"12px normal 400 sans-serif":["-moz-desktop","-moz-dialog","-moz-document","-moz-info","-moz-pull-down-menu","-moz-window","-moz-workspace","caption","icon","menu","message-box","small-caption","status-bar"],"13.3333px normal 400 sans-serif":["-moz-button","-moz-button-group","-moz-field","-moz-list"]}
this is 12.5a3: the diff is the bigger set changed size from 12px to 16px
// FONTS: system fonts: b9b92ccd{"13.3333px normal 400 sans-serif":["-moz-button","-moz-button-group","-moz-field","-moz-list"],"16px normal 400 sans-serif":["-moz-desktop","-moz-dialog","-moz-document","-moz-info","-moz-pull-down-menu","-moz-window","-moz-workspace","caption","icon","menu","message-box","small-caption","status-bar"]}
@pierov was this intentional? I didn't see anything about it, and all those font/system-ui/widget patches were ages ago so I would have expected them in stable by now
all those font/system-ui/widget patches were ages ago so I would have expected them in stable by now
You know the patches that were uplifted from RR to ESR for 102.8?
They broke my patch, so I took the last revision Emilio commented for 12.5a3, whereas richard modified my old patch for 12.0.3.
One of Emilio's comments was about the need to set a font-size, and remained as a todo.
So, I should probably add it back to the version we ship in 12.5a3.
closing: it's still on my radar. But does anyone have tails handy (or who is the tails person to ping) who can tell me a reliable tails system font that is not "whitelisted" - would save me oodles of time with a new VM
thanks boyska. This is part of a test suite which will be used to check fingerprinting (and some other tor) patches are working as expected. This test suite is also part of TZP, which anyone can test at - there's a big overhaul of it coming soon. So the idea is that we can test each alpha/stable for regressions internally, and anyone can test anything gecko at TZP whenever they like
Back to this particular test - in TB we limit fonts on desktop - either via a whitelist (mac/windows) or by setting the font directory to point to the tor browser/browser/font/ dir and only using the bundled fonts in that dir (linux)
in order to check that this font limiting is working, we want to include fonts in our test (the test detects available fonts) that shouldn't be detected, but are expected on the platform (the only way to prove a failure/negative here is to detect a positive/actual font). Am I making sense?
So that's easy on windows and mac - because they have certain system fonts always provided by the OS regardless of language or OS version
for example. On windows we do not allow Impact, but this is expected on every windows system (7,8,8.1,10,11 regardless of language install). We can increase that list to cover more fonts in case someone deleted Impact. But test wise for us (and we wouldn't delete Impact) if we detect any of those fonts, then we know our font limiting patch failed, and are alerted
So we want some (or at least one) super reliable fonts on Tails that AREN'T in the /browser/fonts/ dir. So short of downloading and setting up a new tails VM and getting a system font list (I am not very linux savvy), I thought I would ask.
I hope I made sense
here's the 134 linux expected fonts
should match your tor browser/browser/font dir (ignoring that some like arimo have bold/italic variants etc)
["Arimo","Cousine","Noto Naskh Arabic","Noto Sans Adlam","Noto Sans Armenian","Noto Sans Balinese","Noto Sans Bamum","Noto Sans Bassa Vah","Noto Sans Batak","Noto Sans Bengali","Noto Sans Buginese","Noto Sans Buhid","Noto Sans Canadian Aboriginal","Noto Sans Chakma","Noto Sans Cham","Noto Sans Cherokee","Noto Sans Coptic","Noto Sans Deseret","Noto Sans Devanagari","Noto Sans Elbasan","Noto Sans Ethiopic","Noto Sans Georgian","Noto Sans Grantha","Noto Sans Gujarati","Noto Sans Gunjala Gondi","Noto Sans Gurmukhi","Noto Sans Hanifi Rohingya","Noto Sans Hanunoo","Noto Sans Hebrew","Noto Sans JP","Noto Sans Javanese","Noto Sans KR","Noto Sans Kannada","Noto Sans Kayah Li","Noto Sans Khmer","Noto Sans Khojki","Noto Sans Khudawadi","Noto Sans Lao","Noto Sans Lepcha","Noto Sans Limbu","Noto Sans Lisu","Noto Sans Mahajani","Noto Sans Malayalam","Noto Sans Mandaic","Noto Sans Masaram Gondi","Noto Sans Medefaidrin","Noto Sans Meetei Mayek","Noto Sans Mende Kikakui","Noto Sans Miao","Noto Sans Modi","Noto Sans Mongolian","Noto Sans Mro","Noto Sans Multani","Noto Sans Myanmar","Noto Sans NKo","Noto Sans New Tai Lue","Noto Sans Newa","Noto Sans Ol Chiki","Noto Sans Oriya","Noto Sans Osage","Noto Sans Osmanya","Noto Sans Pahawh Hmong","Noto Sans Pau Cin Hau","Noto Sans Rejang","Noto Sans Runic","Noto Sans SC","Noto Sans Samaritan","Noto Sans Saurashtra","Noto Sans Sharada","Noto Sans Shavian","Noto Sans Sinhala","Noto Sans Sora Sompeng","Noto Sans Soyombo","Noto Sans Sundanese","Noto Sans Syloti Nagri","Noto Sans Symbols","Noto Sans Symbols2","Noto Sans Syriac","Noto Sans TC","Noto Sans Tagalog","Noto Sans Tagbanwa","Noto Sans Tai Le","Noto Sans Tai Tham","Noto Sans Tai Viet","Noto Sans Takri","Noto Sans Tamil","Noto Sans Telugu","Noto Sans Thaana","Noto Sans Thai","Noto Sans Tifinagh","Noto Sans Tifinagh APT","Noto Sans Tifinagh Adrar","Noto Sans Tifinagh Agraw Imazighen","Noto Sans Tifinagh Ahaggar","Noto Sans Tifinagh Air","Noto Sans Tifinagh Azawagh","Noto Sans Tifinagh Ghat","Noto Sans Tifinagh Hawad","Noto Sans Tifinagh Rhissa Ixa","Noto Sans Tifinagh SIL","Noto Sans Tifinagh Tawellemmet","Noto Sans Tirhuta","Noto Sans Vai","Noto Sans Wancho","Noto Sans Warang Citi","Noto Sans Yi","Noto Sans Zanabazar Square","Noto Serif Armenian","Noto Serif Balinese","Noto Serif Bengali","Noto Serif Devanagari","Noto Serif Dogra","Noto Serif Ethiopic","Noto Serif Georgian","Noto Serif Grantha","Noto Serif Gujarati","Noto Serif Gurmukhi","Noto Serif Hebrew","Noto Serif Hmong Nyiakeng","Noto Serif Kannada","Noto Serif Khmer","Noto Serif Khojki","Noto Serif Lao","Noto Serif Malayalam","Noto Serif Myanmar","Noto Serif Sinhala","Noto Serif Tamil","Noto Serif Telugu","Noto Serif Thai","Noto Serif Tibetan","Noto Serif Yezidi","STIX Math","Tinos","Twemoji Mozilla"]
Shame I didn't get a TAILS SYSTEM FONT name that is not in the whitelist from someone ...
I've downloaded Tails 5.11, and run fc-list there, here is the output:
All Tails fonts
/usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf: DejaVu Serif:style=Bold/usr/share/fonts/truetype/noto/NotoSansThai-Regular.ttf: Noto Sans Thai:style=Regular/usr/share/fonts/truetype/noto/NotoSansModi-Regular.ttf: Noto Sans Modi:style=Regular/usr/share/fonts/opentype/urw-base35/URWBookman-LightItalic.otf: URW Bookman:style=Light Italic/usr/share/fonts/truetype/noto/NotoSansPahawhHmong-Regular.ttf: Noto Sans Pahawh Hmong:style=Regular/usr/share/fonts/truetype/noto/NotoSerifYezidi-Bold.ttf: Noto Serif Yezidi:style=Bold/usr/share/fonts/opentype/urw-base35/URWBookman-Light.otf: URW Bookman:style=Light/usr/share/fonts/truetype/noto/NotoSansOldNorthArabian-Regular.ttf: Noto Sans Old North Arabian,Noto Sans OldNorArab:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book/usr/share/fonts/truetype/noto/NotoSansCypriot-Regular.ttf: Noto Sans Cypriot:style=Regular/usr/share/fonts/truetype/noto/NotoSansPsalterPahlavi-Regular.ttf: Noto Sans Psalter Pahlavi,Noto Sans PsaPahlavi:style=Regular/usr/share/fonts/truetype/culmus/HadasimCLM-BoldOblique.ttf: Hadasim CLM:style=BoldOblique/usr/share/fonts/truetype/noto/NotoSansWarangCiti-Regular.ttf: Noto Sans Warang Citi:style=Regular/usr/share/fonts/truetype/noto/NotoSansTeluguUI-Bold.ttf: Noto Sans Telugu UI:style=Bold/usr/share/fonts/truetype/noto/NotoSansLisu-Regular.ttf: Noto Sans Lisu:style=Regular/usr/share/fonts/truetype/noto/NotoSansThaiUI-Bold.ttf: Noto Sans Thai UI:style=Bold/usr/share/fonts/truetype/noto/NotoSansTamilUI-Regular.ttf: Noto Sans Tamil UI:style=Regular/usr/share/fonts/truetype/noto/NotoSansSogdian-Regular.ttf: Noto Sans Sogdian:style=Regular/usr/share/fonts/truetype/noto/NotoSansMongolian-Regular.ttf: Noto Sans Mongolian:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Oblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Oblique,Oblique/usr/share/fonts/truetype/noto/NotoSansLimbu-Regular.ttf: Noto Sans Limbu:style=Regular/usr/share/fonts/opentype/noto/NotoSerifCJK-Bold.ttc: Noto Serif CJK SC:style=Bold/usr/share/fonts/truetype/noto/NotoSansArabicUI-Regular.ttf: Noto Sans Arabic UI:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusMonoPS-Italic.otf: Nimbus Mono PS:style=Italic/usr/share/fonts/truetype/noto/NotoSansUgaritic-Regular.ttf: Noto Sans Ugaritic:style=Regular/usr/share/fonts/truetype/noto/NotoSansMono-Regular.ttf: Noto Sans Mono:style=Regular/usr/share/fonts/truetype/noto/NotoSansKhmer-Bold.ttf: Noto Sans Khmer:style=Bold/usr/share/fonts/opentype/noto/NotoSerifCJK-Bold.ttc: Noto Serif CJK TC:style=Bold/usr/share/fonts/truetype/noto/NotoSansArmenian-Bold.ttf: Noto Sans Armenian:style=Bold/usr/share/fonts/truetype/culmus/StamAshkenazCLM.ttf: Stam Ashkenaz CLM:style=Medium/usr/share/fonts/truetype/noto/NotoSansGujarati-Bold.ttf: Noto Sans Gujarati:style=Bold/usr/share/fonts/opentype/urw-base35/P052-Italic.otf: P052:style=Italic/usr/share/fonts/type1/urw-base35/URWGothic-BookOblique.t1: URW Gothic:style=Book Oblique/usr/share/fonts/truetype/liberation/LiberationSansNarrow-Italic.ttf: Liberation Sans Narrow:style=Italic/usr/share/fonts/truetype/noto/NotoSansGujaratiUI-Regular.ttf: Noto Sans Gujarati UI:style=Regular/usr/share/fonts/truetype/noto/NotoSansOriya-Regular.ttf: Noto Sans Oriya:style=Regular/usr/share/fonts/truetype/noto/NotoSansWancho-Regular.ttf: Noto Sans Wancho:style=Regular/usr/share/fonts/truetype/noto/NotoSansThaiUI-Regular.ttf: Noto Sans Thai UI:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-BoldItalic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold Italic,Bold Italic/usr/share/fonts/truetype/noto/NotoSansCaucasianAlbanian-Regular.ttf: Noto Sans Caucasian Albanian,Noto Sans CaucAlban:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSans-ExtraLight.ttf: DejaVu Sans,DejaVu Sans Light:style=ExtraLight/usr/share/fonts/truetype/noto/NotoSerifHebrew-Bold.ttf: Noto Serif Hebrew:style=Bold/usr/share/fonts/truetype/noto/NotoSansInscriptionalParthian-Regular.ttf: Noto Sans Inscriptional Parthian,Noto Sans InsParthi:style=Regular/usr/share/fonts/truetype/culmus/SimpleCLM-Medium.ttf: Simple CLM:style=Medium/usr/share/fonts/truetype/culmus/MiriamMonoCLM-Bold.ttf: Miriam Mono CLM:style=Bold/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: DejaVu Sans:style=Book/usr/share/fonts/opentype/urw-base35/NimbusSans-Regular.otf: Nimbus Sans:style=Regular/usr/share/fonts/truetype/noto/NotoSerifHebrew-Regular.ttf: Noto Serif Hebrew:style=Regular/usr/share/fonts/truetype/noto/NotoSansMayanNumerals-Regular.ttf: Noto Sans Mayan Numerals:style=Regular/usr/share/fonts/truetype/noto/NotoSansTakri-Regular.ttf: Noto Sans Takri:style=Regular/usr/share/fonts/truetype/noto/NotoSansAdlamUnjoined-Bold.ttf: Noto Sans Adlam Unjoined:style=Bold/usr/share/fonts/truetype/noto/NotoSansSignWriting-Regular.ttf: Noto Sans SignWriting,Noto Sans SignWrit:style=Regular/usr/share/fonts/truetype/noto/NotoNaskhArabic-Bold.ttf: Noto Naskh Arabic:style=Bold/usr/share/fonts/truetype/noto/NotoSansTifinaghHawad-Regular.ttf: Noto Sans Tifinagh Hawad:style=Regular/usr/share/fonts/type1/urw-base35/URWBookman-DemiItalic.t1: URW Bookman:style=Demi Italic/usr/share/fonts/opentype/urw-base35/NimbusSansNarrow-Oblique.otf: Nimbus Sans Narrow:style=Oblique/usr/share/fonts/truetype/noto/NotoSerifTelugu-Regular.ttf: Noto Serif Telugu:style=Regular/usr/share/fonts/truetype/noto/NotoSansCuneiform-Regular.ttf: Noto Sans Cuneiform:style=Regular/usr/share/fonts/type1/urw-base35/NimbusSans-Regular.t1: Nimbus Sans:style=Regular/usr/share/fonts/truetype/noto/NotoRashiHebrew-Regular.ttf: Noto Rashi Hebrew:style=Regular/usr/share/fonts/opentype/noto/NotoSerifCJK-Bold.ttc: Noto Serif CJK JP:style=Bold/usr/share/fonts/opentype/noto/NotoSerifCJK-Bold.ttc: Noto Serif CJK KR:style=Bold/usr/share/fonts/opentype/urw-base35/C059-Roman.otf: C059:style=Roman/usr/share/fonts/truetype/noto/NotoSansDevanagariUI-Regular.ttf: Noto Sans Devanagari UI:style=Regular/usr/share/fonts/truetype/quicksand/Quicksand-Light.ttf: Quicksand Light:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusMonoPS-BoldItalic.otf: Nimbus Mono PS:style=Bold Italic/usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf: Liberation Sans:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed,Book/usr/share/fonts/truetype/noto/NotoSerifTamil-Bold.ttf: Noto Serif Tamil:style=Bold/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-Italic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Italic,Italic/usr/share/fonts/truetype/culmus/SimpleCLM-MediumOblique.ttf: Simple CLM:style=MediumOblique/usr/share/fonts/type1/urw-base35/URWGothic-DemiOblique.t1: URW Gothic:style=Demi Oblique/usr/share/fonts/truetype/noto/NotoSansSyriac-Regular.ttf: Noto Sans Syriac:style=Regular/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc: Noto Sans CJK JP:style=Regular/usr/share/fonts/truetype/culmus/StamSefaradCLM.ttf: Stam Sefarad CLM:style=Medium/usr/share/fonts/truetype/liberation/LiberationMono-BoldItalic.ttf: Liberation Mono:style=Bold Italic/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc: Noto Sans CJK HK:style=Regular/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc: Noto Sans CJK KR:style=Regular/usr/share/fonts/truetype/noto/NotoSansTifinagh-Regular.ttf: Noto Sans Tifinagh:style=Regular/usr/share/fonts/truetype/noto/NotoSansSoraSompeng-Regular.ttf: Noto Sans Sora Sompeng:style=Regular/usr/share/fonts/truetype/noto/NotoSerifDisplay-BoldItalic.ttf: Noto Serif Display:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSansOlChiki-Bold.ttf: Noto Sans Ol Chiki:style=Bold/usr/share/fonts/truetype/noto/NotoSerifTamil-Regular.ttf: Noto Serif Tamil:style=Regular/usr/share/fonts/truetype/noto/NotoSerifBalinese-Regular.ttf: Noto Serif Balinese:style=Regular/usr/share/fonts/truetype/noto/NotoSansMyanmar-Bold.ttf: Noto Sans Myanmar:style=Bold/usr/share/fonts/truetype/liberation/LiberationSerif-Italic.ttf: Liberation Serif:style=Italic/usr/share/fonts/truetype/culmus/NachlieliCLM-Light.otf: Nachlieli CLM:style=Light/usr/share/fonts/truetype/noto/NotoSerifGurmukhi-Bold.ttf: Noto Serif Gurmukhi:style=Bold/usr/share/fonts/truetype/noto/NotoLoopedThai-Bold.ttf: Noto Looped Thai,Noto Looped Thai Bold:style=Bold/usr/share/fonts/truetype/noto/NotoSansGujaratiUI-Bold.ttf: Noto Sans Gujarati UI:style=Bold/usr/share/fonts/truetype/noto/NotoSansMarchen-Regular.ttf: Noto Sans Marchen:style=Regular/usr/share/fonts/truetype/noto/NotoSansSaurashtra-Regular.ttf: Noto Sans Saurashtra:style=Regular/usr/share/fonts/type1/urw-base35/URWBookman-LightItalic.t1: URW Bookman:style=Light Italic/usr/share/fonts/truetype/noto/NotoSerifAhom-Regular.ttf: Noto Serif Ahom:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusSansNarrow-BoldOblique.otf: Nimbus Sans Narrow:style=Bold Oblique/usr/share/fonts/truetype/noto/NotoSerifYezidi-Regular.ttf: Noto Serif Yezidi:style=Regular/usr/share/fonts/truetype/culmus/MiriamCLM-Book.ttf: Miriam CLM,מרים:style=Book,קל/usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf: Liberation Mono:style=Bold/usr/share/fonts/truetype/noto/NotoSerifBengali-Bold.ttf: Noto Serif Bengali:style=Bold/usr/share/fonts/truetype/noto/NotoSansTifinaghTawellemmet-Regular.ttf: Noto Sans Tifinagh Tawellemmet:style=Regular/usr/share/fonts/opentype/linux-libertine/LinLibertine_RB.otf: Linux Libertine O:style=Bold/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc: Noto Sans CJK SC:style=Regular/usr/share/fonts/truetype/noto/NotoSansBamum-Bold.ttf: Noto Sans Bamum:style=Bold/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc: Noto Sans CJK TC:style=Regular/usr/share/fonts/truetype/noto/NotoSansRunic-Regular.ttf: Noto Sans Runic:style=Regular/usr/share/fonts/truetype/noto/NotoSerifKhojki-Regular.ttf: Noto Serif Khojki:style=Regular/usr/share/fonts/truetype/noto/NotoSansNewTaiLue-Regular.ttf: Noto Sans New Tai Lue:style=Regular/usr/share/fonts/truetype/noto/NotoSansKannadaUI-Regular.ttf: Noto Sans Kannada UI:style=Regular/usr/share/fonts/truetype/noto/NotoKufiArabic-Regular.ttf: Noto Kufi Arabic:style=Regular/usr/share/fonts/opentype/linux-libertine/LinLibertine_RZI.otf: Linux Libertine O:style=Semibold Italic/usr/share/fonts/X11/Type1/AharoniCLM-Book.pfa: Aharoni CLM:style=Book/usr/share/fonts/opentype/linux-libertine/LinLibertine_I.otf: Linux Libertine Initials O:style=Initials/usr/share/fonts/truetype/noto/NotoSansOldSogdian-Regular.ttf: Noto Sans Old Sogdian:style=Regular/usr/share/fonts/type1/urw-base35/NimbusSansNarrow-BoldOblique.t1: Nimbus Sans Narrow:style=Bold Oblique/usr/share/fonts/opentype/urw-base35/NimbusSans-Bold.otf: Nimbus Sans:style=Bold/usr/share/fonts/truetype/noto/NotoLoopedThaiUI-Regular.ttf: Noto Looped Thai UI,Noto Looped Thai UI Regular:style=Regular/usr/share/fonts/type1/urw-base35/NimbusMonoPS-Italic.t1: Nimbus Mono PS:style=Italic/usr/share/fonts/truetype/noto/NotoSansOriyaUI-Bold.ttf: Noto Sans Oriya UI:style=Bold/usr/share/fonts/truetype/noto/NotoSerifGujarati-Bold.ttf: Noto Serif Gujarati:style=Bold/usr/share/fonts/opentype/linux-libertine/LinLibertine_R.otf: Linux Libertine O:style=Regular/usr/share/fonts/type1/urw-base35/NimbusRoman-BoldItalic.t1: Nimbus Roman:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSerifArmenian-Regular.ttf: Noto Serif Armenian:style=Regular/usr/share/fonts/truetype/noto/NotoSerifDisplay-Regular.ttf: Noto Serif Display:style=Regular/usr/share/fonts/truetype/liberation/LiberationSansNarrow-Regular.ttf: Liberation Sans Narrow:style=Regular/usr/share/fonts/truetype/noto/NotoSansCanadianAboriginal-Regular.ttf: Noto Sans Canadian Aboriginal,Noto Sans CanAborig:style=Regular/usr/share/fonts/truetype/noto/NotoSansBalinese-Regular.ttf: Noto Sans Balinese:style=Regular/usr/share/fonts/truetype/noto/NotoSansLisu-Bold.ttf: Noto Sans Lisu:style=Bold/usr/share/fonts/truetype/noto/NotoSans-Bold.ttf: Noto Sans:style=Bold/usr/share/fonts/truetype/culmus/HadasimCLM-Regular.ttf: Hadasim CLM:style=Regular/usr/share/fonts/truetype/noto/NotoSansTifinaghAir-Regular.ttf: Noto Sans Tifinagh Air:style=Regular/usr/share/fonts/opentype/urw-base35/Z003-MediumItalic.otf: Z003:style=Medium Italic/usr/share/fonts/X11/Type1/ElliniaCLM-BoldItalic.pfa: Ellinia CLM:style=Bold Italic/usr/share/fonts/opentype/urw-base35/NimbusSans-BoldItalic.otf: Nimbus Sans:style=Bold Italic/usr/share/fonts/opentype/urw-base35/URWGothic-Book.otf: URW Gothic:style=Book/usr/share/fonts/truetype/culmus/FrankRuehlCLM-Bold.ttf: Frank Ruehl CLM:style=Bold/usr/share/fonts/truetype/noto/NotoSansBhaiksuki-Regular.ttf: Noto Sans Bhaiksuki:style=Regular/usr/share/fonts/truetype/noto/NotoSerifKhmer-Regular.ttf: Noto Serif Khmer:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSerif-BoldItalic.ttf: DejaVu Serif:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSansJavanese-Regular.ttf: Noto Sans Javanese:style=Regular/usr/share/fonts/truetype/noto/NotoSerifMalayalam-Regular.ttf: Noto Serif Malayalam:style=Regular/usr/share/fonts/truetype/culmus/MiriamCLM-Bold.ttf: Miriam CLM,מרים:style=Bold,כבד/usr/share/fonts/truetype/noto/NotoSansDisplay-Italic.ttf: Noto Sans Display:style=Italic/usr/share/fonts/truetype/culmus/DavidCLM-Medium.otf: David CLM:style=Medium/usr/share/fonts/truetype/noto/NotoSansBalinese-Bold.ttf: Noto Sans Balinese:style=Bold/usr/share/fonts/truetype/noto/NotoSansLinearB-Regular.ttf: Noto Sans Linear B:style=Regular/usr/share/fonts/truetype/noto/NotoSansKannada-Bold.ttf: Noto Sans Kannada:style=Bold/usr/share/fonts/truetype/noto/NotoSansLycian-Regular.ttf: Noto Sans Lycian:style=Regular/usr/share/fonts/truetype/noto/NotoSansThai-Bold.ttf: Noto Sans Thai:style=Bold/usr/share/fonts/truetype/noto/NotoSansShavian-Regular.ttf: Noto Sans Shavian:style=Regular/usr/share/fonts/truetype/noto/NotoSansBengali-Bold.ttf: Noto Sans Bengali:style=Bold/usr/share/fonts/truetype/noto/NotoSansKhudawadi-Regular.ttf: Noto Sans Khudawadi:style=Regular/usr/share/fonts/X11/Type1/AharoniCLM-Bold.pfa: Aharoni CLM:style=Bold/usr/share/fonts/truetype/noto/NotoSansYi-Regular.ttf: Noto Sans Yi:style=Regular/usr/share/fonts/truetype/noto/NotoSansLinearA-Regular.ttf: Noto Sans Linear A:style=Regular/usr/share/fonts/X11/Type1/AharoniCLM-BoldOblique.pfa: Aharoni CLM:style=Bold Oblique/usr/share/fonts/truetype/noto/NotoSansOlChiki-Regular.ttf: Noto Sans Ol Chiki:style=Regular/usr/share/fonts/truetype/noto/NotoSansInscriptionalPahlavi-Regular.ttf: Noto Sans Inscriptional Pahlavi,Noto Sans InsPahlavi:style=Regular/usr/share/fonts/opentype/urw-base35/D050000L.otf: D050000L:style=Regular/usr/share/fonts/truetype/noto/NotoSerifDogra-Regular.ttf: Noto Serif Dogra:style=Regular/usr/share/fonts/truetype/noto/NotoSansLydian-Regular.ttf: Noto Sans Lydian:style=Regular/usr/share/fonts/truetype/noto/NotoSansTagalog-Regular.ttf: Noto Sans Tagalog:style=Regular/usr/share/fonts/opentype/linux-libertine/LinLibertine_M.otf: Linux Libertine Mono O:style=Mono/usr/share/fonts/opentype/noto/NotoSerifCJK-Regular.ttc: Noto Serif CJK SC:style=Regular/usr/share/fonts/truetype/noto/NotoSansOsmanya-Regular.ttf: Noto Sans Osmanya:style=Regular/usr/share/fonts/truetype/noto/NotoSansHanunoo-Regular.ttf: Noto Sans Hanunoo:style=Regular/usr/share/fonts/truetype/noto/NotoSansBamum-Regular.ttf: Noto Sans Bamum:style=Regular/usr/share/fonts/truetype/noto/NotoSansDevanagari-Bold.ttf: Noto Sans Devanagari:style=Bold/usr/share/fonts/truetype/noto/NotoSansMeeteiMayek-Bold.ttf: Noto Sans Meetei Mayek:style=Bold/usr/share/fonts/truetype/noto/NotoSerifGrantha-Regular.ttf: Noto Serif Grantha:style=Regular/usr/share/fonts/opentype/noto/NotoSerifCJK-Regular.ttc: Noto Serif CJK TC:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Oblique.ttf: DejaVu Sans Mono:style=Oblique/usr/share/fonts/opentype/urw-base35/C059-BdIta.otf: C059:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSansKhmerUI-Bold.ttf: Noto Sans Khmer UI:style=Bold/usr/share/fonts/truetype/noto/NotoSansEthiopic-Regular.ttf: Noto Sans Ethiopic:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-Bold.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold,Bold/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold/usr/share/fonts/truetype/noto/NotoSansOldSouthArabian-Regular.ttf: Noto Sans Old South Arabian,Noto Sans OldSouArab:style=Regular/usr/share/fonts/truetype/noto/NotoSansOriya-Bold.ttf: Noto Sans Oriya:style=Bold/usr/share/fonts/truetype/noto/NotoSansElbasan-Regular.ttf: Noto Sans Elbasan:style=Regular/usr/share/fonts/truetype/noto/NotoSerifMyanmar-Bold.ttf: Noto Serif Myanmar:style=Bold/usr/share/fonts/truetype/noto/NotoSansGeorgian-Regular.ttf: Noto Sans Georgian:style=Regular/usr/share/fonts/truetype/liberation/LiberationSerif-Bold.ttf: Liberation Serif:style=Bold/usr/share/fonts/truetype/culmus/MiriamMonoCLM-BoldOblique.ttf: Miriam Mono CLM:style=BoldOblique/usr/share/fonts/truetype/dejavu/DejaVuSansMono-BoldOblique.ttf: DejaVu Sans Mono:style=Bold Oblique/usr/share/fonts/truetype/noto/NotoSerifTangut-Regular.ttf: Noto Serif Tangut:style=Regular/usr/share/fonts/truetype/culmus/MiriamMonoCLM-BookOblique.ttf: Miriam Mono CLM:style=BookOblique/usr/share/fonts/truetype/noto/NotoSansTifinaghAdrar-Regular.ttf: Noto Sans Tifinagh Adrar:style=Regular/usr/share/fonts/truetype/noto/NotoSansLaoUI-Bold.ttf: Noto Sans Lao UI:style=Bold/usr/share/fonts/truetype/noto/NotoSansGrantha-Regular.ttf: Noto Sans Grantha:style=Regular/usr/share/fonts/truetype/culmus/HadasimCLM-RegularOblique.ttf: Hadasim CLM:style=RegularOblique/usr/share/fonts/truetype/noto/NotoSansBassaVah-Regular.ttf: Noto Sans Bassa Vah:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusRoman-Regular.otf: Nimbus Roman:style=Regular/usr/share/fonts/opentype/noto/NotoSerifCJK-Regular.ttc: Noto Serif CJK JP:style=Regular/usr/share/fonts/opentype/noto/NotoSerifCJK-Regular.ttc: Noto Serif CJK KR:style=Regular/usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf: Cantarell:style=Bold/usr/share/fonts/opentype/urw-base35/C059-Italic.otf: C059:style=Italic/usr/share/fonts/truetype/noto/NotoLoopedLaoUI-Regular.ttf: Noto Looped Lao UI,Noto Looped Lao UI Regular:style=Regular/usr/share/fonts/truetype/noto/NotoSansGurmukhiUI-Regular.ttf: Noto Sans Gurmukhi UI:style=Regular/usr/share/fonts/truetype/noto/NotoSerifEthiopic-Regular.ttf: Noto Serif Ethiopic:style=Regular/usr/share/fonts/truetype/noto/NotoSansGurmukhi-Regular.ttf: Noto Sans Gurmukhi:style=Regular/usr/share/fonts/truetype/noto/NotoSerifSinhala-Bold.ttf: Noto Serif Sinhala:style=Bold/usr/share/fonts/truetype/liberation/LiberationMono-Regular.ttf: Liberation Mono:style=Regular/usr/share/fonts/truetype/noto/NotoSans-Italic.ttf: Noto Sans:style=Italic/usr/share/fonts/opentype/urw-base35/NimbusMonoPS-Bold.otf: Nimbus Mono PS:style=Bold/usr/share/fonts/opentype/urw-base35/NimbusRoman-Bold.otf: Nimbus Roman:style=Bold/usr/share/fonts/truetype/libreoffice/opens___.ttf: OpenSymbol:style=Regular/usr/share/fonts/truetype/noto/NotoSansKharoshthi-Regular.ttf: Noto Sans Kharoshthi:style=Regular/usr/share/fonts/truetype/noto/NotoSansArmenian-Regular.ttf: Noto Sans Armenian:style=Regular/usr/share/fonts/truetype/noto/NotoSansRejang-Regular.ttf: Noto Sans Rejang:style=Regular/usr/share/fonts/truetype/culmus/DavidCLM-BoldItalic.otf: David CLM:style=BoldItalic/usr/share/fonts/type1/urw-base35/NimbusSansNarrow-Bold.t1: Nimbus Sans Narrow:style=Bold/usr/share/fonts/truetype/noto/NotoSansJavanese-Bold.ttf: Noto Sans Javanese:style=Bold/usr/share/fonts/opentype/urw-base35/NimbusRoman-BoldItalic.otf: Nimbus Roman:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSansMedefaidrin-Bold.ttf: Noto Sans Medefaidrin:style=Bold/usr/share/fonts/truetype/noto/NotoSansSinhalaUI-Bold.ttf: Noto Sans Sinhala UI:style=Bold/usr/share/fonts/truetype/noto/NotoSansMedefaidrin-Regular.ttf: Noto Sans Medefaidrin:style=Regular/usr/share/fonts/truetype/culmus/ShofarRegularOblique.ttf: Shofar:style=RegularOblique/usr/share/fonts/X11/Type1/CaladingsCLM.pfa: Caladings CLM:style=Regular/usr/share/fonts/truetype/noto/NotoSansMeeteiMayek-Regular.ttf: Noto Sans Meetei Mayek:style=Regular/usr/share/fonts/truetype/noto/NotoSansDevanagariUI-Bold.ttf: Noto Sans Devanagari UI:style=Bold/usr/share/fonts/truetype/noto/NotoSerifNyiakengPuachueHmong-Bold.ttf: Noto Serif Hmong Nyiakeng:style=Bold/usr/share/fonts/truetype/dejavu/DejaVuMathTeXGyre.ttf: DejaVu Math TeX Gyre:style=Regular/usr/share/fonts/truetype/liberation/LiberationSans-Italic.ttf: Liberation Sans:style=Italic/usr/share/fonts/truetype/noto/NotoSerif-Regular.ttf: Noto Serif:style=Regular/usr/share/fonts/truetype/noto/NotoSansNushu-Regular.ttf: Noto Sans Nushu:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-BoldOblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold Oblique,Bold Oblique/usr/share/fonts/truetype/noto/NotoSerifDevanagari-Regular.ttf: Noto Serif Devanagari:style=Regular/usr/share/fonts/truetype/noto/NotoSansTaiViet-Regular.ttf: Noto Sans Tai Viet:style=Regular/usr/share/fonts/truetype/noto/NotoSansDuployan-Regular.ttf: Noto Sans Duployan:style=Regular/usr/share/fonts/truetype/noto/NotoSansBuhid-Regular.ttf: Noto Sans Buhid:style=Regular/usr/share/fonts/truetype/noto/NotoSansThaana-Bold.ttf: Noto Sans Thaana:style=Bold/usr/share/fonts/truetype/noto/NotoSansMro-Regular.ttf: Noto Sans Mro:style=Regular/usr/share/fonts/truetype/noto/NotoSansTamil-Bold.ttf: Noto Sans Tamil:style=Bold/usr/share/fonts/truetype/noto/NotoSansDisplay-Regular.ttf: Noto Sans Display:style=Regular/usr/share/fonts/truetype/noto/NotoSansKayahLi-Bold.ttf: Noto Sans Kayah Li:style=Bold/usr/share/fonts/truetype/noto/NotoSansNKo-Regular.ttf: Noto Sans NKo:style=Regular/usr/share/fonts/truetype/noto/NotoSansDeseret-Regular.ttf: Noto Sans Deseret:style=Regular/usr/share/fonts/truetype/noto/NotoSansSundanese-Bold.ttf: Noto Sans Sundanese:style=Bold/usr/share/fonts/truetype/noto/NotoSansAdlamUnjoined-Regular.ttf: Noto Sans Adlam Unjoined:style=Regular/usr/share/fonts/type1/urw-base35/C059-Roman.t1: C059:style=Roman/usr/share/fonts/truetype/noto/NotoSansOsage-Regular.ttf: Noto Sans Osage:style=Regular/usr/share/fonts/truetype/noto/NotoSansCham-Regular.ttf: Noto Sans Cham:style=Regular/usr/share/fonts/truetype/noto/NotoSansTifinaghAzawagh-Regular.ttf: Noto Sans Tifinagh Azawagh:style=Regular/usr/share/fonts/truetype/noto/NotoSansCanadianAboriginal-Bold.ttf: Noto Sans Canadian Aboriginal,Noto Sans CanAborig:style=Bold/usr/share/fonts/truetype/liberation/LiberationSerif-BoldItalic.ttf: Liberation Serif:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSerifEthiopic-Bold.ttf: Noto Serif Ethiopic:style=Bold/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed,Book/usr/share/fonts/truetype/noto/NotoSerifTamilSlanted-Regular.ttf: Noto Serif Tamil Slanted:style=Regular/usr/share/fonts/truetype/noto/NotoSansLepcha-Regular.ttf: Noto Sans Lepcha:style=Regular/usr/share/fonts/type1/urw-base35/NimbusRoman-Italic.t1: Nimbus Roman:style=Italic/usr/share/fonts/truetype/noto/NotoSansLao-Regular.ttf: Noto Sans Lao:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusSans-Italic.otf: Nimbus Sans:style=Italic/usr/share/fonts/X11/Type1/ElliniaCLM-Light.pfa: Ellinia CLM:style=Light/usr/share/fonts/truetype/noto/NotoSerif-Italic.ttf: Noto Serif:style=Italic/usr/share/fonts/truetype/culmus/FrankRuehlCLM-BoldOblique.ttf: Frank Ruehl CLM:style=BoldOblique/usr/share/fonts/truetype/noto/NotoSansMiao-Regular.ttf: Noto Sans Miao:style=Regular/usr/share/fonts/truetype/noto/NotoLoopedThai-Regular.ttf: Noto Looped Thai,Noto Looped Thai Regular:style=Regular/usr/share/fonts/truetype/noto/NotoSansTifinaghAPT-Regular.ttf: Noto Sans Tifinagh APT:style=Regular/usr/share/fonts/truetype/noto/NotoSansHanifiRohingya-Regular.ttf: Noto Sans Hanifi Rohingya:style=Regular/usr/share/fonts/truetype/noto/NotoSansMyanmarUI-Regular.ttf: Noto Sans Myanmar UI:style=Regular/usr/share/fonts/type1/urw-base35/URWBookman-Demi.t1: URW Bookman:style=Demi/usr/share/fonts/truetype/noto/NotoSerifGeorgian-Regular.ttf: Noto Serif Georgian:style=Regular/usr/share/fonts/truetype/quicksand/Quicksand-Bold.ttf: Quicksand:style=Bold/usr/share/fonts/truetype/noto/NotoSansKhmerUI-Regular.ttf: Noto Sans Khmer UI:style=Regular/usr/share/fonts/truetype/noto/NotoSansMalayalamUI-Bold.ttf: Noto Sans Malayalam UI:style=Bold/usr/share/fonts/truetype/noto/NotoSerifDisplay-Italic.ttf: Noto Serif Display:style=Italic/usr/share/fonts/opentype/linux-libertine/LinBiolinum_R.otf: Linux Biolinum O:style=Regular/usr/share/fonts/truetype/noto/NotoSansOldTurkic-Regular.ttf: Noto Sans Old Turkic:style=Regular/usr/share/fonts/truetype/noto/NotoSerifLao-Bold.ttf: Noto Serif Lao:style=Bold/usr/share/fonts/opentype/linux-libertine/LinBiolinum_RI.otf: Linux Biolinum O:style=Italic/usr/share/fonts/truetype/noto/NotoSansNewa-Regular.ttf: Noto Sans Newa:style=Regular/usr/share/fonts/truetype/noto/NotoMusic-Regular.ttf: Noto Music:style=Regular/usr/share/fonts/truetype/noto/NotoSansOriyaUI-Regular.ttf: Noto Sans Oriya UI:style=Regular/usr/share/fonts/truetype/noto/NotoSansEgyptianHieroglyphs-Regular.ttf: Noto Sans Egyptian Hieroglyphs,Noto Sans EgyptHiero:style=Regular/usr/share/fonts/truetype/noto/NotoSansImperialAramaic-Regular.ttf: Noto Sans Imperial Aramaic,Noto Sans ImpAramaic:style=Regular/usr/share/fonts/truetype/noto/NotoSansDevanagari-Regular.ttf: Noto Sans Devanagari:style=Regular/usr/share/fonts/truetype/culmus/ShofarRegular.ttf: Shofar:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Bold.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold,Bold/usr/share/fonts/truetype/liberation/LiberationSansNarrow-BoldItalic.ttf: Liberation Sans Narrow:style=Bold Italic/usr/share/fonts/type1/urw-base35/URWGothic-Book.t1: URW Gothic:style=Book/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf: DejaVu Sans Mono:style=Bold/usr/share/fonts/type1/urw-base35/NimbusRoman-Regular.t1: Nimbus Roman:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusMonoPS-Regular.otf: Nimbus Mono PS:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusSansNarrow-Regular.otf: Nimbus Sans Narrow:style=Regular/usr/share/fonts/truetype/noto/NotoSansMath-Regular.ttf: Noto Sans Math:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSans-Oblique.ttf: DejaVu Sans:style=Oblique/usr/share/fonts/truetype/noto/NotoSansTirhuta-Regular.ttf: Noto Sans Tirhuta:style=Regular/usr/share/fonts/truetype/noto/NotoSansTifinaghGhat-Regular.ttf: Noto Sans Tifinagh Ghat:style=Regular/usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf: Cantarell:style=Regular/usr/share/fonts/truetype/noto/NotoSansDisplay-BoldItalic.ttf: Noto Sans Display:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSansMalayalamUI-Regular.ttf: Noto Sans Malayalam UI:style=Regular/usr/share/fonts/opentype/urw-base35/URWBookman-Demi.otf: URW Bookman:style=Demi/usr/share/fonts/type1/urw-base35/NimbusMonoPS-Regular.t1: Nimbus Mono PS:style=Regular/usr/share/fonts/truetype/noto/NotoSansBuginese-Regular.ttf: Noto Sans Buginese:style=Regular/usr/share/fonts/type1/urw-base35/NimbusSans-BoldItalic.t1: Nimbus Sans:style=Bold Italic/usr/share/fonts/type1/urw-base35/NimbusSans-Bold.t1: Nimbus Sans:style=Bold/usr/share/fonts/type1/urw-base35/NimbusMonoPS-BoldItalic.t1: Nimbus Mono PS:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSansMyanmar-Regular.ttf: Noto Sans Myanmar:style=Regular/usr/share/fonts/truetype/noto/NotoSerifKhmer-Bold.ttf: Noto Serif Khmer:style=Bold/usr/share/fonts/truetype/noto/NotoSansOldItalic-Regular.ttf: Noto Sans Old Italic:style=Regular/usr/share/fonts/truetype/noto/NotoSerifThai-Bold.ttf: Noto Serif Thai:style=Bold/usr/share/fonts/truetype/noto/NotoTraditionalNushu-Regular.ttf: Noto Traditional Nushu:style=Regular/usr/share/fonts/truetype/noto/NotoSansMyanmarUI-Bold.ttf: Noto Sans Myanmar UI:style=Bold/usr/share/fonts/truetype/noto/NotoSansMasaramGondi-Regular.ttf: Noto Sans Masaram Gondi:style=Regular/usr/share/fonts/truetype/noto/NotoSerifGurmukhi-Regular.ttf: Noto Serif Gurmukhi:style=Regular/usr/share/fonts/truetype/culmus/FrankRuehlCLM-Medium.ttf: Frank Ruehl CLM:style=Medium/usr/share/fonts/truetype/noto/NotoSansSylotiNagri-Regular.ttf: Noto Sans Syloti Nagri:style=Regular/usr/share/fonts/truetype/noto/NotoSansBengaliUI-Bold.ttf: Noto Sans Bengali UI:style=Bold/usr/share/fonts/type1/urw-base35/StandardSymbolsPS.t1: Standard Symbols PS:style=Regular/usr/share/fonts/truetype/noto/NotoSansKannadaUI-Bold.ttf: Noto Sans Kannada UI:style=Bold/usr/share/fonts/truetype/noto/NotoSansAvestan-Regular.ttf: Noto Sans Avestan:style=Regular/usr/share/fonts/opentype/urw-base35/URWGothic-Demi.otf: URW Gothic:style=Demi/usr/share/fonts/truetype/noto/NotoSansSinhala-Regular.ttf: Noto Sans Sinhala:style=Regular/usr/share/fonts/truetype/noto/NotoSansOldPermic-Regular.ttf: Noto Sans Old Permic:style=Regular/usr/share/fonts/truetype/noto/NotoSansPalmyrene-Regular.ttf: Noto Sans Palmyrene:style=Regular/usr/share/fonts/truetype/noto/NotoSansMalayalam-Bold.ttf: Noto Sans Malayalam:style=Bold/usr/share/fonts/truetype/noto/NotoSansSundanese-Regular.ttf: Noto Sans Sundanese:style=Regular/usr/share/fonts/truetype/culmus/ShofarDemi-Bold.ttf: Shofar:style=Bold/usr/share/fonts/truetype/noto/NotoSansEthiopic-Bold.ttf: Noto Sans Ethiopic:style=Bold/usr/share/fonts/truetype/noto/NotoSerifMyanmar-Regular.ttf: Noto Serif Myanmar:style=Regular/usr/share/fonts/truetype/noto/NotoSerif-BoldItalic.ttf: Noto Serif:style=Bold Italic/usr/share/fonts/truetype/noto/NotoRashiHebrew-Bold.ttf: Noto Rashi Hebrew:style=Bold/usr/share/fonts/truetype/quicksand/Quicksand-Regular.ttf: Quicksand:style=Regular/usr/share/fonts/truetype/noto/NotoSansKhojki-Regular.ttf: Noto Sans Khojki:style=Regular/usr/share/fonts/truetype/noto/NotoSansGurmukhi-Bold.ttf: Noto Sans Gurmukhi:style=Bold/usr/share/fonts/opentype/urw-base35/NimbusSansNarrow-Bold.otf: Nimbus Sans Narrow:style=Bold/usr/share/fonts/truetype/culmus/SimpleCLM-Bold.ttf: Simple CLM:style=Bold/usr/share/fonts/opentype/urw-base35/URWBookman-DemiItalic.otf: URW Bookman:style=Demi Italic/usr/share/fonts/truetype/noto/NotoNaskhArabicUI-Bold.ttf: Noto Naskh Arabic UI:style=Bold/usr/share/fonts/truetype/noto/NotoLoopedLaoUI-Bold.ttf: Noto Looped Lao UI,Noto Looped Lao UI Bold:style=Bold/usr/share/fonts/truetype/liberation/LiberationMono-Italic.ttf: Liberation Mono:style=Italic/usr/share/fonts/truetype/liberation/LiberationSans-BoldItalic.ttf: Liberation Sans:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSerifArmenian-Bold.ttf: Noto Serif Armenian:style=Bold/usr/share/fonts/opentype/linux-libertine/LinLibertine_DR.otf: Linux Libertine Display O:style=Regular/usr/share/fonts/opentype/urw-base35/URWGothic-BookOblique.otf: URW Gothic:style=Book Oblique/usr/share/fonts/truetype/noto/NotoNastaliqUrdu-Regular.ttf: Noto Nastaliq Urdu:style=Regular/usr/share/fonts/X11/Type1/DrugulinCLM-Bold.pfa: Drugulin CLM:style=Bold/usr/share/fonts/truetype/culmus/KeterYG-Bold.ttf: Keter YG:style=Bold/usr/share/fonts/truetype/noto/NotoSansBengali-Regular.ttf: Noto Sans Bengali:style=Regular/usr/share/fonts/truetype/noto/NotoSansSoyombo-Regular.ttf: Noto Sans Soyombo:style=Regular/usr/share/fonts/truetype/noto/NotoSansPauCinHau-Regular.ttf: Noto Sans Pau Cin Hau:style=Regular/usr/share/fonts/truetype/culmus/ShofarDemi-BoldOblique.ttf: Shofar:style=BoldOblique/usr/share/fonts/truetype/noto/NotoSansGothic-Regular.ttf: Noto Sans Gothic:style=Regular/usr/share/fonts/opentype/cantarell/Cantarell-Light.otf: Cantarell,Cantarell Light:style=Light,Regular/usr/share/fonts/truetype/noto/NotoSansSamaritan-Regular.ttf: Noto Sans Samaritan:style=Regular/usr/share/fonts/truetype/noto/NotoSansCoptic-Regular.ttf: Noto Sans Coptic:style=Regular/usr/share/fonts/opentype/cantarell/Cantarell-ExtraBold.otf: Cantarell,Cantarell Extra Bold:style=Extra Bold,Regular/usr/share/fonts/truetype/noto/NotoSansMalayalam-Regular.ttf: Noto Sans Malayalam:style=Regular/usr/share/fonts/type1/urw-base35/Z003-MediumItalic.t1: Z003:style=Medium Italic/usr/share/fonts/truetype/noto/NotoSansKaithi-Regular.ttf: Noto Sans Kaithi:style=Regular/usr/share/fonts/truetype/noto/NotoSansTagbanwa-Regular.ttf: Noto Sans Tagbanwa:style=Regular/usr/share/fonts/type1/urw-base35/P052-BoldItalic.t1: P052:style=Bold Italic/usr/share/fonts/type1/urw-base35/C059-Italic.t1: C059:style=Italic/usr/share/fonts/truetype/noto/NotoSansAdlam-Bold.ttf: Noto Sans Adlam:style=Bold/usr/share/fonts/truetype/noto/NotoSansMeroitic-Regular.ttf: Noto Sans Meroitic:style=Regular/usr/share/fonts/type1/urw-base35/P052-Roman.t1: P052:style=Roman/usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc: Noto Sans Mono CJK TC:style=Bold/usr/share/fonts/truetype/noto/NotoSerifKannada-Regular.ttf: Noto Serif Kannada:style=Regular/usr/share/fonts/truetype/noto/NotoSansTifinaghAhaggar-Regular.ttf: Noto Sans Tifinagh Ahaggar:style=Regular/usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc: Noto Sans Mono CJK SC:style=Bold/usr/share/fonts/truetype/noto/NotoSansGunjalaGondi-Regular.ttf: Noto Sans Gunjala Gondi:style=Regular/usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc: Noto Sans Mono CJK KR:style=Bold/usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc: Noto Sans Mono CJK HK:style=Bold/usr/share/fonts/type1/urw-base35/NimbusRoman-Bold.t1: Nimbus Roman:style=Bold/usr/share/fonts/truetype/noto/NotoSansArabic-Bold.ttf: Noto Sans Arabic:style=Bold/usr/share/fonts/type1/urw-base35/NimbusSansNarrow-Oblique.t1: Nimbus Sans Narrow:style=Oblique/usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc: Noto Sans Mono CJK JP:style=Bold/usr/share/fonts/truetype/culmus/NachlieliCLM-Bold.otf: Nachlieli CLM:style=Bold/usr/share/fonts/truetype/noto/NotoSansKhmer-Regular.ttf: Noto Sans Khmer:style=Regular/usr/share/fonts/truetype/liberation/LiberationSerif-Regular.ttf: Liberation Serif:style=Regular/usr/share/fonts/truetype/culmus/SimpleCLM-BoldOblique.ttf: Simple CLM:style=BoldOblique/usr/share/fonts/truetype/noto/NotoSans-BoldItalic.ttf: Noto Sans:style=Bold Italic/usr/share/fonts/X11/Type1/YehudaCLM-Bold.pfa: Yehuda CLM:style=Bold/usr/share/fonts/truetype/noto/NotoSansTamilSupplement-Regular.ttf: Noto Sans Tamil Supplement:style=Regular/usr/share/fonts/opentype/urw-base35/P052-BoldItalic.otf: P052:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSansOldPersian-Regular.ttf: Noto Sans Old Persian:style=Regular/usr/share/fonts/truetype/quicksand/Quicksand-Medium.ttf: Quicksand Medium:style=Regular/usr/share/fonts/truetype/noto/NotoSansAnatolianHieroglyphs-Regular.ttf: Noto Sans Anatolian Hieroglyphs,Noto Sans AnatoHiero:style=Regular/usr/share/fonts/truetype/noto/NotoSansTamilUI-Bold.ttf: Noto Sans Tamil UI:style=Bold/usr/share/fonts/truetype/noto/NotoSansSymbols2-Regular.ttf: Noto Sans Symbols2:style=Regular/usr/share/fonts/truetype/culmus/NachlieliCLM-LightOblique.otf: Nachlieli CLM:style=LightOblique/usr/share/fonts/truetype/noto/NotoSansMono-Bold.ttf: Noto Sans Mono:style=Bold/usr/share/fonts/truetype/dejavu/DejaVuSerif-Italic.ttf: DejaVu Serif:style=Italic/usr/share/fonts/truetype/noto/NotoSansManichaean-Regular.ttf: Noto Sans Manichaean:style=Regular/usr/share/fonts/truetype/noto/NotoLoopedLao-Regular.ttf: Noto Looped Lao,Noto Looped Lao Regular:style=Regular/usr/share/fonts/truetype/noto/NotoSansBatak-Regular.ttf: Noto Sans Batak:style=Regular/usr/share/fonts/truetype/noto/NotoSerifDisplay-Bold.ttf: Noto Serif Display:style=Bold/usr/share/fonts/truetype/noto/NotoSansSharada-Regular.ttf: Noto Sans Sharada:style=Regular/usr/share/fonts/X11/Type1/ElliniaCLM-Bold.pfa: Ellinia CLM:style=Bold/usr/share/fonts/truetype/noto/NotoSansTaiTham-Regular.ttf: Noto Sans Tai Tham:style=Regular/usr/share/fonts/truetype/noto/NotoKufiArabic-Bold.ttf: Noto Kufi Arabic:style=Bold/usr/share/fonts/truetype/noto/NotoSansHatran-Regular.ttf: Noto Sans Hatran:style=Regular/usr/share/fonts/X11/Type1/ElliniaCLM-LightItalic.pfa: Ellinia CLM:style=Light Italic/usr/share/fonts/truetype/culmus/NachlieliCLM-BoldOblique.otf: Nachlieli CLM:style=BoldOblique/usr/share/fonts/truetype/noto/NotoSansThaana-Regular.ttf: Noto Sans Thaana:style=Regular/usr/share/fonts/X11/Type1/DrugulinCLM-BoldItalic.pfa: Drugulin CLM:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSerifNyiakengPuachueHmong-Regular.ttf: Noto Serif Hmong Nyiakeng:style=Regular/usr/share/fonts/truetype/noto/NotoSansSinhalaUI-Regular.ttf: Noto Sans Sinhala UI:style=Regular/usr/share/fonts/truetype/noto/NotoSansMultani-Regular.ttf: Noto Sans Multani:style=Regular/usr/share/fonts/truetype/noto/NotoLoopedThaiUI-Bold.ttf: Noto Looped Thai UI,Noto Looped Thai UI Bold:style=Bold/usr/share/fonts/truetype/culmus/KeterYG-MediumOblique.ttf: Keter YG:style=MediumOblique/usr/share/fonts/truetype/noto/NotoSansLaoUI-Regular.ttf: Noto Sans Lao UI:style=Regular/usr/share/fonts/truetype/noto/NotoNaskhArabicUI-Regular.ttf: Noto Naskh Arabic UI:style=Regular/usr/share/fonts/truetype/culmus/KeterYG-BoldOblique.ttf: Keter YG:style=BoldOblique/usr/share/fonts/type1/urw-base35/D050000L.t1: D050000L:style=Regular/usr/share/fonts/truetype/noto/NotoSansCham-Bold.ttf: Noto Sans Cham:style=Bold/usr/share/fonts/opentype/cantarell/Cantarell-Thin.otf: Cantarell,Cantarell Thin:style=Thin,Regular/usr/share/fonts/opentype/urw-base35/StandardSymbolsPS.otf: Standard Symbols PS:style=Regular/usr/share/fonts/truetype/noto/NotoSansArabic-Regular.ttf: Noto Sans Arabic:style=Regular/usr/share/fonts/truetype/noto/NotoSansDisplay-Bold.ttf: Noto Sans Display:style=Bold/usr/share/fonts/truetype/noto/NotoSansGujarati-Regular.ttf: Noto Sans Gujarati:style=Regular/usr/share/fonts/truetype/noto/NotoSansCarian-Regular.ttf: Noto Sans Carian:style=Regular/usr/share/fonts/truetype/noto/NotoSansKannada-Regular.ttf: Noto Sans Kannada:style=Regular/usr/share/fonts/truetype/noto/NotoMono-Regular.ttf: Noto Mono:style=Regular/usr/share/fonts/truetype/noto/NotoSansChakma-Regular.ttf: Noto Sans Chakma:style=Regular/usr/share/fonts/truetype/noto/NotoSansHanifiRohingya-Bold.ttf: Noto Sans Hanifi Rohingya:style=Bold/usr/share/fonts/truetype/noto/NotoSerifDevanagari-Bold.ttf: Noto Serif Devanagari:style=Bold/usr/share/fonts/type1/urw-base35/URWGothic-Demi.t1: URW Gothic:style=Demi/usr/share/fonts/type1/urw-base35/NimbusSans-Italic.t1: Nimbus Sans:style=Italic/usr/share/fonts/type1/urw-base35/C059-BdIta.t1: C059:style=Bold Italic/usr/share/fonts/truetype/noto/NotoSansTaiTham-Bold.ttf: Noto Sans Tai Tham:style=Bold/usr/share/fonts/truetype/noto/NotoSerifGujarati-Regular.ttf: Noto Serif Gujarati:style=Regular/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc: Noto Sans Mono CJK SC:style=Regular/usr/share/fonts/type1/urw-base35/NimbusMonoPS-Bold.t1: Nimbus Mono PS:style=Bold/usr/share/fonts/truetype/noto/NotoSerifTibetan-Bold.ttf: Noto Serif Tibetan:style=Bold/usr/share/fonts/truetype/culmus/FrankRuehlCLM-MediumOblique.ttf: Frank Ruehl CLM:style=MediumOblique/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc: Noto Sans Mono CJK TC:style=Regular/usr/share/fonts/truetype/noto/NotoSansZanabazarSquare-Regular.ttf: Noto Sans Zanabazar Square,Noto Sans Zanabazar:style=Regular/usr/share/fonts/truetype/noto/NotoSansCherokee-Regular.ttf: Noto Sans Cherokee:style=Regular/usr/share/fonts/truetype/noto/NotoSansBrahmi-Regular.ttf: Noto Sans Brahmi:style=Regular/usr/share/fonts/truetype/noto/NotoSerifGeorgian-Bold.ttf: Noto Serif Georgian:style=Bold/usr/share/fonts/opentype/linux-libertine/LinLibertine_RI.otf: Linux Libertine O:style=Italic/usr/share/fonts/truetype/liberation/LiberationSansNarrow-Bold.ttf: Liberation Sans Narrow:style=Bold/usr/share/fonts/truetype/noto/NotoSansSymbols-Regular.ttf: Noto Sans Symbols:style=Regular/usr/share/fonts/truetype/noto/NotoSansMendeKikakui-Regular.ttf: Noto Sans Mende Kikakui:style=Regular/usr/share/fonts/truetype/noto/NotoSerifBengali-Regular.ttf: Noto Serif Bengali:style=Regular/usr/share/fonts/truetype/noto/NotoSansVai-Regular.ttf: Noto Sans Vai:style=Regular/usr/share/fonts/truetype/noto/NotoSansLao-Bold.ttf: Noto Sans Lao:style=Bold/usr/share/fonts/truetype/noto/NotoSansElymaic-Regular.ttf: Noto Sans Elymaic:style=Regular/usr/share/fonts/truetype/noto/NotoSansSinhala-Bold.ttf: Noto Sans Sinhala:style=Bold/usr/share/fonts/opentype/urw-base35/URWGothic-DemiOblique.otf: URW Gothic:style=Demi Oblique/usr/share/fonts/truetype/noto/NotoSansSymbols-Bold.ttf: Noto Sans Symbols:style=Bold/usr/share/fonts/truetype/liberation/LiberationSans-Bold.ttf: Liberation Sans:style=Bold/usr/share/fonts/truetype/noto/NotoSerifTelugu-Bold.ttf: Noto Serif Telugu:style=Bold/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc: Noto Sans Mono CJK HK:style=Regular/usr/share/fonts/truetype/noto/NotoSansCherokee-Bold.ttf: Noto Sans Cherokee:style=Bold/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc: Noto Sans Mono CJK KR:style=Regular/usr/share/fonts/truetype/culmus/DavidCLM-MediumItalic.otf: David CLM:style=MediumItalic/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc: Noto Sans Mono CJK JP:style=Regular/usr/share/fonts/truetype/noto/NotoSansGurmukhiUI-Bold.ttf: Noto Sans Gurmukhi UI:style=Bold/usr/share/fonts/type1/urw-base35/P052-Bold.t1: P052:style=Bold/usr/share/fonts/truetype/noto/NotoSerifTibetan-Regular.ttf: Noto Serif Tibetan:style=Regular/usr/share/fonts/truetype/noto/NotoNaskhArabic-Regular.ttf: Noto Naskh Arabic:style=Regular/usr/share/fonts/truetype/noto/NotoSansArabicUI-Bold.ttf: Noto Sans Arabic UI:style=Bold/usr/share/fonts/truetype/noto/NotoSansGeorgian-Bold.ttf: Noto Sans Georgian:style=Bold/usr/share/fonts/truetype/noto/NotoSansTelugu-Regular.ttf: Noto Sans Telugu:style=Regular/usr/share/fonts/opentype/linux-libertine/LinLibertine_RZ.otf: Linux Libertine O:style=Semibold/usr/share/fonts/truetype/noto/NotoSerif-Bold.ttf: Noto Serif:style=Bold/usr/share/fonts/truetype/noto/NotoSansTeluguUI-Regular.ttf: Noto Sans Telugu UI:style=Regular/usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc: Noto Sans CJK JP:style=Bold/usr/share/fonts/truetype/noto/NotoSansHebrew-Regular.ttf: Noto Sans Hebrew:style=Regular/usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc: Noto Sans CJK KR:style=Bold/usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc: Noto Sans CJK HK:style=Bold/usr/share/fonts/truetype/noto/NotoSerifLao-Regular.ttf: Noto Serif Lao:style=Regular/usr/share/fonts/truetype/noto/NotoSansMandaic-Regular.ttf: Noto Sans Mandaic:style=Regular/usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc: Noto Sans CJK TC:style=Bold/usr/share/fonts/truetype/culmus/KeterYG-Medium.ttf: Keter YG:style=Medium/usr/share/fonts/truetype/noto/NotoSerifTamilSlanted-Bold.ttf: Noto Serif Tamil Slanted:style=Bold/usr/share/fonts/truetype/noto/NotoSansKayahLi-Regular.ttf: Noto Sans Kayah Li:style=Regular/usr/share/fonts/truetype/noto/NotoSansMahajani-Regular.ttf: Noto Sans Mahajani:style=Regular/usr/share/fonts/type1/urw-base35/P052-Italic.t1: P052:style=Italic/usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc: Noto Sans CJK SC:style=Bold/usr/share/fonts/truetype/noto/NotoNastaliqUrdu-Bold.ttf: Noto Nastaliq Urdu:style=Bold/usr/share/fonts/truetype/noto/NotoSansOldHungarian-Regular.ttf: Noto Sans Old Hungarian,Noto Sans OldHung:style=Regular/usr/share/fonts/truetype/noto/NotoSerifThai-Regular.ttf: Noto Serif Thai:style=Regular/usr/share/fonts/type1/urw-base35/NimbusSansNarrow-Regular.t1: Nimbus Sans Narrow:style=Regular/usr/share/fonts/truetype/culmus/DavidCLM-Bold.otf: David CLM:style=Bold/usr/share/fonts/truetype/noto/NotoSansIndicSiyaqNumbers-Regular.ttf: Noto Sans Indic Siyaq Numbers:style=Regular/usr/share/fonts/truetype/noto/NotoSerifSinhala-Regular.ttf: Noto Serif Sinhala:style=Regular/usr/share/fonts/truetype/noto/NotoSansAdlam-Regular.ttf: Noto Sans Adlam:style=Regular/usr/share/fonts/truetype/noto/NotoSansTifinaghSIL-Regular.ttf: Noto Sans Tifinagh SIL:style=Regular/usr/share/fonts/type1/urw-base35/C059-Bold.t1: C059:style=Bold/usr/share/fonts/opentype/linux-libertine/LinLibertine_RBI.otf: Linux Libertine O:style=Bold Italic/usr/share/fonts/opentype/linux-libertine/LinBiolinum_RB.otf: Linux Biolinum O:style=Bold/usr/share/fonts/opentype/linux-libertine/LinBiolinum_K.otf: Linux Biolinum Keyboard O:style=Regular/usr/share/fonts/truetype/noto/NotoSansBengaliUI-Regular.ttf: Noto Sans Bengali UI:style=Regular/usr/share/fonts/truetype/noto/NotoSansSiddham-Regular.ttf: Noto Sans Siddham:style=Regular/usr/share/fonts/truetype/noto/NotoSansOgham-Regular.ttf: Noto Sans Ogham:style=Regular/usr/share/fonts/truetype/noto/NotoSerifKhojki-Bold.ttf: Noto Serif Khojki:style=Bold/usr/share/fonts/truetype/noto/NotoSansTelugu-Bold.ttf: Noto Sans Telugu:style=Bold/usr/share/fonts/truetype/noto/NotoSansTaiLe-Regular.ttf: Noto Sans Tai Le:style=Regular/usr/share/fonts/truetype/noto/NotoSansPhagsPa-Regular.ttf: Noto Sans PhagsPa:style=Regular/usr/share/fonts/truetype/culmus/HadasimCLM-Bold.ttf: Hadasim CLM:style=Bold/usr/share/fonts/truetype/noto/NotoSansPhoenician-Regular.ttf: Noto Sans Phoenician:style=Regular/usr/share/fonts/type1/urw-base35/URWBookman-Light.t1: URW Bookman:style=Light/usr/share/fonts/truetype/dejavu/DejaVuSerif.ttf: DejaVu Serif:style=Book/usr/share/fonts/X11/Type1/YehudaCLM-Light.pfa: Yehuda CLM:style=Light/usr/share/fonts/opentype/urw-base35/P052-Roman.otf: P052:style=Roman/usr/share/fonts/truetype/noto/NotoSansTifinaghAgrawImazighen-Regular.ttf: Noto Sans Tifinagh Agraw Imazighen:style=Regular/usr/share/fonts/truetype/culmus/MiriamMonoCLM-Book.ttf: Miriam Mono CLM:style=Book/usr/share/fonts/opentype/urw-base35/C059-Bold.otf: C059:style=Bold/usr/share/fonts/truetype/noto/NotoSansTifinaghRhissaIxa-Regular.ttf: Noto Sans Tifinagh Rhissa Ixa:style=Regular/usr/share/fonts/X11/Type1/AharoniCLM-BookOblique.pfa: Aharoni CLM:style=Book Oblique/usr/share/fonts/opentype/urw-base35/P052-Bold.otf: P052:style=Bold/usr/share/fonts/truetype/noto/NotoSans-Regular.ttf: Noto Sans:style=Regular/usr/share/fonts/truetype/noto/NotoSansHebrew-Bold.ttf: Noto Sans Hebrew:style=Bold/usr/share/fonts/truetype/noto/NotoSansSoraSompeng-Bold.ttf: Noto Sans Sora Sompeng:style=Bold/usr/share/fonts/truetype/noto/NotoSansTamil-Regular.ttf: Noto Sans Tamil:style=Regular/usr/share/fonts/truetype/noto/NotoSerifMalayalam-Bold.ttf: Noto Serif Malayalam:style=Bold/usr/share/fonts/truetype/noto/NotoSerifKannada-Bold.ttf: Noto Serif Kannada:style=Bold/usr/share/fonts/truetype/noto/NotoLoopedLao-Bold.ttf: Noto Looped Lao,Noto Looped Lao Bold:style=Bold/usr/share/fonts/truetype/noto/NotoSansGlagolitic-Regular.ttf: Noto Sans Glagolitic:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusRoman-Italic.otf: Nimbus Roman:style=Italic/usr/share/fonts/truetype/dejavu/DejaVuSans-BoldOblique.ttf: DejaVu Sans:style=Bold Oblique/usr/share/fonts/truetype/noto/NotoSansNabataean-Regular.ttf: Noto Sans Nabataean:style=Regular
Let's rework this a little bit:
No Noto Fonts
/usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf: DejaVu Serif:style=Bold/usr/share/fonts/opentype/urw-base35/URWBookman-LightItalic.otf: URW Bookman:style=Light Italic/usr/share/fonts/opentype/urw-base35/URWBookman-Light.otf: URW Bookman:style=Light/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book/usr/share/fonts/truetype/culmus/HadasimCLM-BoldOblique.ttf: Hadasim CLM:style=BoldOblique/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Oblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Oblique,Oblique/usr/share/fonts/opentype/urw-base35/NimbusMonoPS-Italic.otf: Nimbus Mono PS:style=Italic/usr/share/fonts/truetype/culmus/StamAshkenazCLM.ttf: Stam Ashkenaz CLM:style=Medium/usr/share/fonts/opentype/urw-base35/P052-Italic.otf: P052:style=Italic/usr/share/fonts/type1/urw-base35/URWGothic-BookOblique.t1: URW Gothic:style=Book Oblique/usr/share/fonts/truetype/liberation/LiberationSansNarrow-Italic.ttf: Liberation Sans Narrow:style=Italic/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-BoldItalic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold Italic,Bold Italic/usr/share/fonts/truetype/dejavu/DejaVuSans-ExtraLight.ttf: DejaVu Sans,DejaVu Sans Light:style=ExtraLight/usr/share/fonts/truetype/culmus/SimpleCLM-Medium.ttf: Simple CLM:style=Medium/usr/share/fonts/truetype/culmus/MiriamMonoCLM-Bold.ttf: Miriam Mono CLM:style=Bold/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: DejaVu Sans:style=Book/usr/share/fonts/opentype/urw-base35/NimbusSans-Regular.otf: Nimbus Sans:style=Regular/usr/share/fonts/type1/urw-base35/URWBookman-DemiItalic.t1: URW Bookman:style=Demi Italic/usr/share/fonts/opentype/urw-base35/NimbusSansNarrow-Oblique.otf: Nimbus Sans Narrow:style=Oblique/usr/share/fonts/type1/urw-base35/NimbusSans-Regular.t1: Nimbus Sans:style=Regular/usr/share/fonts/opentype/urw-base35/C059-Roman.otf: C059:style=Roman/usr/share/fonts/truetype/quicksand/Quicksand-Light.ttf: Quicksand Light:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusMonoPS-BoldItalic.otf: Nimbus Mono PS:style=Bold Italic/usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf: Liberation Sans:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed,Book/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-Italic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Italic,Italic/usr/share/fonts/truetype/culmus/SimpleCLM-MediumOblique.ttf: Simple CLM:style=MediumOblique/usr/share/fonts/type1/urw-base35/URWGothic-DemiOblique.t1: URW Gothic:style=Demi Oblique/usr/share/fonts/truetype/culmus/StamSefaradCLM.ttf: Stam Sefarad CLM:style=Medium/usr/share/fonts/truetype/liberation/LiberationMono-BoldItalic.ttf: Liberation Mono:style=Bold Italic/usr/share/fonts/truetype/liberation/LiberationSerif-Italic.ttf: Liberation Serif:style=Italic/usr/share/fonts/truetype/culmus/NachlieliCLM-Light.otf: Nachlieli CLM:style=Light/usr/share/fonts/type1/urw-base35/URWBookman-LightItalic.t1: URW Bookman:style=Light Italic/usr/share/fonts/opentype/urw-base35/NimbusSansNarrow-BoldOblique.otf: Nimbus Sans Narrow:style=Bold Oblique/usr/share/fonts/truetype/culmus/MiriamCLM-Book.ttf: Miriam CLM,מרים:style=Book,קל/usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf: Liberation Mono:style=Bold/usr/share/fonts/opentype/linux-libertine/LinLibertine_RB.otf: Linux Libertine O:style=Bold/usr/share/fonts/opentype/linux-libertine/LinLibertine_RZI.otf: Linux Libertine O:style=Semibold Italic/usr/share/fonts/X11/Type1/AharoniCLM-Book.pfa: Aharoni CLM:style=Book/usr/share/fonts/opentype/linux-libertine/LinLibertine_I.otf: Linux Libertine Initials O:style=Initials/usr/share/fonts/type1/urw-base35/NimbusSansNarrow-BoldOblique.t1: Nimbus Sans Narrow:style=Bold Oblique/usr/share/fonts/opentype/urw-base35/NimbusSans-Bold.otf: Nimbus Sans:style=Bold/usr/share/fonts/type1/urw-base35/NimbusMonoPS-Italic.t1: Nimbus Mono PS:style=Italic/usr/share/fonts/opentype/linux-libertine/LinLibertine_R.otf: Linux Libertine O:style=Regular/usr/share/fonts/type1/urw-base35/NimbusRoman-BoldItalic.t1: Nimbus Roman:style=Bold Italic/usr/share/fonts/truetype/liberation/LiberationSansNarrow-Regular.ttf: Liberation Sans Narrow:style=Regular/usr/share/fonts/truetype/culmus/HadasimCLM-Regular.ttf: Hadasim CLM:style=Regular/usr/share/fonts/opentype/urw-base35/Z003-MediumItalic.otf: Z003:style=Medium Italic/usr/share/fonts/X11/Type1/ElliniaCLM-BoldItalic.pfa: Ellinia CLM:style=Bold Italic/usr/share/fonts/opentype/urw-base35/NimbusSans-BoldItalic.otf: Nimbus Sans:style=Bold Italic/usr/share/fonts/opentype/urw-base35/URWGothic-Book.otf: URW Gothic:style=Book/usr/share/fonts/truetype/culmus/FrankRuehlCLM-Bold.ttf: Frank Ruehl CLM:style=Bold/usr/share/fonts/truetype/dejavu/DejaVuSerif-BoldItalic.ttf: DejaVu Serif:style=Bold Italic/usr/share/fonts/truetype/culmus/MiriamCLM-Bold.ttf: Miriam CLM,מרים:style=Bold,כבד/usr/share/fonts/truetype/culmus/DavidCLM-Medium.otf: David CLM:style=Medium/usr/share/fonts/X11/Type1/AharoniCLM-Bold.pfa: Aharoni CLM:style=Bold/usr/share/fonts/X11/Type1/AharoniCLM-BoldOblique.pfa: Aharoni CLM:style=Bold Oblique/usr/share/fonts/opentype/urw-base35/D050000L.otf: D050000L:style=Regular/usr/share/fonts/opentype/linux-libertine/LinLibertine_M.otf: Linux Libertine Mono O:style=Mono/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Oblique.ttf: DejaVu Sans Mono:style=Oblique/usr/share/fonts/opentype/urw-base35/C059-BdIta.otf: C059:style=Bold Italic/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-Bold.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold,Bold/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold/usr/share/fonts/truetype/liberation/LiberationSerif-Bold.ttf: Liberation Serif:style=Bold/usr/share/fonts/truetype/culmus/MiriamMonoCLM-BoldOblique.ttf: Miriam Mono CLM:style=BoldOblique/usr/share/fonts/truetype/dejavu/DejaVuSansMono-BoldOblique.ttf: DejaVu Sans Mono:style=Bold Oblique/usr/share/fonts/truetype/culmus/MiriamMonoCLM-BookOblique.ttf: Miriam Mono CLM:style=BookOblique/usr/share/fonts/truetype/culmus/HadasimCLM-RegularOblique.ttf: Hadasim CLM:style=RegularOblique/usr/share/fonts/opentype/urw-base35/NimbusRoman-Regular.otf: Nimbus Roman:style=Regular/usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf: Cantarell:style=Bold/usr/share/fonts/opentype/urw-base35/C059-Italic.otf: C059:style=Italic/usr/share/fonts/truetype/liberation/LiberationMono-Regular.ttf: Liberation Mono:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusMonoPS-Bold.otf: Nimbus Mono PS:style=Bold/usr/share/fonts/opentype/urw-base35/NimbusRoman-Bold.otf: Nimbus Roman:style=Bold/usr/share/fonts/truetype/libreoffice/opens___.ttf: OpenSymbol:style=Regular/usr/share/fonts/truetype/culmus/DavidCLM-BoldItalic.otf: David CLM:style=BoldItalic/usr/share/fonts/type1/urw-base35/NimbusSansNarrow-Bold.t1: Nimbus Sans Narrow:style=Bold/usr/share/fonts/opentype/urw-base35/NimbusRoman-BoldItalic.otf: Nimbus Roman:style=Bold Italic/usr/share/fonts/truetype/culmus/ShofarRegularOblique.ttf: Shofar:style=RegularOblique/usr/share/fonts/X11/Type1/CaladingsCLM.pfa: Caladings CLM:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuMathTeXGyre.ttf: DejaVu Math TeX Gyre:style=Regular/usr/share/fonts/truetype/liberation/LiberationSans-Italic.ttf: Liberation Sans:style=Italic/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-BoldOblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold Oblique,Bold Oblique/usr/share/fonts/type1/urw-base35/C059-Roman.t1: C059:style=Roman/usr/share/fonts/truetype/liberation/LiberationSerif-BoldItalic.ttf: Liberation Serif:style=Bold Italic/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed,Book/usr/share/fonts/type1/urw-base35/NimbusRoman-Italic.t1: Nimbus Roman:style=Italic/usr/share/fonts/opentype/urw-base35/NimbusSans-Italic.otf: Nimbus Sans:style=Italic/usr/share/fonts/X11/Type1/ElliniaCLM-Light.pfa: Ellinia CLM:style=Light/usr/share/fonts/truetype/culmus/FrankRuehlCLM-BoldOblique.ttf: Frank Ruehl CLM:style=BoldOblique/usr/share/fonts/type1/urw-base35/URWBookman-Demi.t1: URW Bookman:style=Demi/usr/share/fonts/truetype/quicksand/Quicksand-Bold.ttf: Quicksand:style=Bold/usr/share/fonts/opentype/linux-libertine/LinBiolinum_R.otf: Linux Biolinum O:style=Regular/usr/share/fonts/opentype/linux-libertine/LinBiolinum_RI.otf: Linux Biolinum O:style=Italic/usr/share/fonts/truetype/culmus/ShofarRegular.ttf: Shofar:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Bold.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold,Bold/usr/share/fonts/truetype/liberation/LiberationSansNarrow-BoldItalic.ttf: Liberation Sans Narrow:style=Bold Italic/usr/share/fonts/type1/urw-base35/URWGothic-Book.t1: URW Gothic:style=Book/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf: DejaVu Sans Mono:style=Bold/usr/share/fonts/type1/urw-base35/NimbusRoman-Regular.t1: Nimbus Roman:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusMonoPS-Regular.otf: Nimbus Mono PS:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusSansNarrow-Regular.otf: Nimbus Sans Narrow:style=Regular/usr/share/fonts/truetype/dejavu/DejaVuSans-Oblique.ttf: DejaVu Sans:style=Oblique/usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf: Cantarell:style=Regular/usr/share/fonts/opentype/urw-base35/URWBookman-Demi.otf: URW Bookman:style=Demi/usr/share/fonts/type1/urw-base35/NimbusMonoPS-Regular.t1: Nimbus Mono PS:style=Regular/usr/share/fonts/type1/urw-base35/NimbusSans-BoldItalic.t1: Nimbus Sans:style=Bold Italic/usr/share/fonts/type1/urw-base35/NimbusSans-Bold.t1: Nimbus Sans:style=Bold/usr/share/fonts/type1/urw-base35/NimbusMonoPS-BoldItalic.t1: Nimbus Mono PS:style=Bold Italic/usr/share/fonts/truetype/culmus/FrankRuehlCLM-Medium.ttf: Frank Ruehl CLM:style=Medium/usr/share/fonts/type1/urw-base35/StandardSymbolsPS.t1: Standard Symbols PS:style=Regular/usr/share/fonts/opentype/urw-base35/URWGothic-Demi.otf: URW Gothic:style=Demi/usr/share/fonts/truetype/culmus/ShofarDemi-Bold.ttf: Shofar:style=Bold/usr/share/fonts/truetype/quicksand/Quicksand-Regular.ttf: Quicksand:style=Regular/usr/share/fonts/opentype/urw-base35/NimbusSansNarrow-Bold.otf: Nimbus Sans Narrow:style=Bold/usr/share/fonts/truetype/culmus/SimpleCLM-Bold.ttf: Simple CLM:style=Bold/usr/share/fonts/opentype/urw-base35/URWBookman-DemiItalic.otf: URW Bookman:style=Demi Italic/usr/share/fonts/truetype/liberation/LiberationMono-Italic.ttf: Liberation Mono:style=Italic/usr/share/fonts/truetype/liberation/LiberationSans-BoldItalic.ttf: Liberation Sans:style=Bold Italic/usr/share/fonts/opentype/linux-libertine/LinLibertine_DR.otf: Linux Libertine Display O:style=Regular/usr/share/fonts/opentype/urw-base35/URWGothic-BookOblique.otf: URW Gothic:style=Book Oblique/usr/share/fonts/X11/Type1/DrugulinCLM-Bold.pfa: Drugulin CLM:style=Bold/usr/share/fonts/truetype/culmus/KeterYG-Bold.ttf: Keter YG:style=Bold/usr/share/fonts/truetype/culmus/ShofarDemi-BoldOblique.ttf: Shofar:style=BoldOblique/usr/share/fonts/opentype/cantarell/Cantarell-Light.otf: Cantarell,Cantarell Light:style=Light,Regular/usr/share/fonts/opentype/cantarell/Cantarell-ExtraBold.otf: Cantarell,Cantarell Extra Bold:style=Extra Bold,Regular/usr/share/fonts/type1/urw-base35/Z003-MediumItalic.t1: Z003:style=Medium Italic/usr/share/fonts/type1/urw-base35/P052-BoldItalic.t1: P052:style=Bold Italic/usr/share/fonts/type1/urw-base35/C059-Italic.t1: C059:style=Italic/usr/share/fonts/type1/urw-base35/P052-Roman.t1: P052:style=Roman/usr/share/fonts/type1/urw-base35/NimbusRoman-Bold.t1: Nimbus Roman:style=Bold/usr/share/fonts/type1/urw-base35/NimbusSansNarrow-Oblique.t1: Nimbus Sans Narrow:style=Oblique/usr/share/fonts/truetype/culmus/NachlieliCLM-Bold.otf: Nachlieli CLM:style=Bold/usr/share/fonts/truetype/liberation/LiberationSerif-Regular.ttf: Liberation Serif:style=Regular/usr/share/fonts/truetype/culmus/SimpleCLM-BoldOblique.ttf: Simple CLM:style=BoldOblique/usr/share/fonts/X11/Type1/YehudaCLM-Bold.pfa: Yehuda CLM:style=Bold/usr/share/fonts/opentype/urw-base35/P052-BoldItalic.otf: P052:style=Bold Italic/usr/share/fonts/truetype/quicksand/Quicksand-Medium.ttf: Quicksand Medium:style=Regular/usr/share/fonts/truetype/culmus/NachlieliCLM-LightOblique.otf: Nachlieli CLM:style=LightOblique/usr/share/fonts/truetype/dejavu/DejaVuSerif-Italic.ttf: DejaVu Serif:style=Italic/usr/share/fonts/X11/Type1/ElliniaCLM-Bold.pfa: Ellinia CLM:style=Bold/usr/share/fonts/X11/Type1/ElliniaCLM-LightItalic.pfa: Ellinia CLM:style=Light Italic/usr/share/fonts/truetype/culmus/NachlieliCLM-BoldOblique.otf: Nachlieli CLM:style=BoldOblique/usr/share/fonts/X11/Type1/DrugulinCLM-BoldItalic.pfa: Drugulin CLM:style=Bold Italic/usr/share/fonts/truetype/culmus/KeterYG-MediumOblique.ttf: Keter YG:style=MediumOblique/usr/share/fonts/truetype/culmus/KeterYG-BoldOblique.ttf: Keter YG:style=BoldOblique/usr/share/fonts/type1/urw-base35/D050000L.t1: D050000L:style=Regular/usr/share/fonts/opentype/cantarell/Cantarell-Thin.otf: Cantarell,Cantarell Thin:style=Thin,Regular/usr/share/fonts/opentype/urw-base35/StandardSymbolsPS.otf: Standard Symbols PS:style=Regular/usr/share/fonts/type1/urw-base35/URWGothic-Demi.t1: URW Gothic:style=Demi/usr/share/fonts/type1/urw-base35/NimbusSans-Italic.t1: Nimbus Sans:style=Italic/usr/share/fonts/type1/urw-base35/C059-BdIta.t1: C059:style=Bold Italic/usr/share/fonts/type1/urw-base35/NimbusMonoPS-Bold.t1: Nimbus Mono PS:style=Bold/usr/share/fonts/truetype/culmus/FrankRuehlCLM-MediumOblique.ttf: Frank Ruehl CLM:style=MediumOblique/usr/share/fonts/opentype/linux-libertine/LinLibertine_RI.otf: Linux Libertine O:style=Italic/usr/share/fonts/truetype/liberation/LiberationSansNarrow-Bold.ttf: Liberation Sans Narrow:style=Bold/usr/share/fonts/opentype/urw-base35/URWGothic-DemiOblique.otf: URW Gothic:style=Demi Oblique/usr/share/fonts/truetype/liberation/LiberationSans-Bold.ttf: Liberation Sans:style=Bold/usr/share/fonts/truetype/culmus/DavidCLM-MediumItalic.otf: David CLM:style=MediumItalic/usr/share/fonts/type1/urw-base35/P052-Bold.t1: P052:style=Bold/usr/share/fonts/opentype/linux-libertine/LinLibertine_RZ.otf: Linux Libertine O:style=Semibold/usr/share/fonts/truetype/culmus/KeterYG-Medium.ttf: Keter YG:style=Medium/usr/share/fonts/type1/urw-base35/P052-Italic.t1: P052:style=Italic/usr/share/fonts/type1/urw-base35/NimbusSansNarrow-Regular.t1: Nimbus Sans Narrow:style=Regular/usr/share/fonts/truetype/culmus/DavidCLM-Bold.otf: David CLM:style=Bold/usr/share/fonts/type1/urw-base35/C059-Bold.t1: C059:style=Bold/usr/share/fonts/opentype/linux-libertine/LinLibertine_RBI.otf: Linux Libertine O:style=Bold Italic/usr/share/fonts/opentype/linux-libertine/LinBiolinum_RB.otf: Linux Biolinum O:style=Bold/usr/share/fonts/opentype/linux-libertine/LinBiolinum_K.otf: Linux Biolinum Keyboard O:style=Regular/usr/share/fonts/truetype/culmus/HadasimCLM-Bold.ttf: Hadasim CLM:style=Bold/usr/share/fonts/type1/urw-base35/URWBookman-Light.t1: URW Bookman:style=Light/usr/share/fonts/truetype/dejavu/DejaVuSerif.ttf: DejaVu Serif:style=Book/usr/share/fonts/X11/Type1/YehudaCLM-Light.pfa: Yehuda CLM:style=Light/usr/share/fonts/opentype/urw-base35/P052-Roman.otf: P052:style=Roman/usr/share/fonts/truetype/culmus/MiriamMonoCLM-Book.ttf: Miriam Mono CLM:style=Book/usr/share/fonts/opentype/urw-base35/C059-Bold.otf: C059:style=Bold/usr/share/fonts/X11/Type1/AharoniCLM-BookOblique.pfa: Aharoni CLM:style=Book Oblique/usr/share/fonts/opentype/urw-base35/P052-Bold.otf: P052:style=Bold/usr/share/fonts/opentype/urw-base35/NimbusRoman-Italic.otf: Nimbus Roman:style=Italic/usr/share/fonts/truetype/dejavu/DejaVuSans-BoldOblique.ttf: DejaVu Sans:style=Bold Oblique
We can do better, let's remove the file names and weights/styles, and remove duplicates:
A nice list
Aharoni CLM
C059
Caladings CLM
Cantarell
D050000L
David CLM
DejaVu Math TeX Gyre
DejaVu Sans
DejaVu Sans Mono
DejaVu Serif
Drugulin CLM
Ellinia CLM
Frank Ruehl CLM
Hadasim CLM
Keter YG
Liberation Mono
Liberation Sans
Liberation Sans Narrow
Liberation Serif
Linux Biolinum Keyboard O
Linux Biolinum O
Linux Libertine Display O
Linux Libertine Initials O
Linux Libertine Mono O
Linux Libertine O
Miriam CLM,מרים
Miriam Mono CLM
Nachlieli CLM
Nimbus Mono PS
Nimbus Roman
Nimbus Sans
Nimbus Sans Narrow
OpenSymbol
P052
Quicksand
Shofar
Simple CLM
Stam Ashkenaz CLM
Stam Sefarad CLM
Standard Symbols PS
URW Bookman
URW Gothic
Yehuda CLM
Z003
From these, I do know:
Cantarell (GNOME default)
DejaVu (this font is in all Linux systems I've used: not having it is very high information, almost like not having Arial on Windows! But you don't care of outliers too much, I guess)
Liberation (default in a lot of distros, because of metrics compatibility with MS fonts; I remind you Liberation and Arimo/Cusine/Tinos should be extremely similar)
Linux Libertine (I know it, and have it in my system, but it isn't installed by default in many systems, IIRC)
Nimbus (isntalled by default, but usually not set as a default replacement. Not sure all distros include it, though)
Quicksand (I know it, but definitely not installed by default in Linux distros! Very nice candidate to test)
URW fonts (not installed by default; some strange fonts like Z003 are actually part of URW, too)
The rest are all unknown to me, so you should have a good candidate list now .
So I already have DejaVu Sans, Liberation Sans, Liberation Serif... so we're all good. Thanks for doing that. Here's a
not having it is very high information, almost like not having Arial on Windows! But you don't care of outliers too much, I guess
Generally, yes - it is about entropy. However, the purpose of TZP as per the readme is to collect data on everything (for gecko) so we know how many buckets. This then tells us what to look at. A survey with one test per profile would then give us an idea of entropy, which is more precise.
But for a lot we already know, from math. And a lot we already know we protect. So these become more akin to just checking. For example, the canvas is very simple known pixel test (no fonts, no transforming etc) - in fact for toDataURL it is a random-per-run known pixel test (woo!). That's because 1. we already know it can be exploited with other metrics (fonts, cleartype, math, gylphs, etc) to provide high entropy and 2. we already have a solution
TZP is not to test everyone's FP, it is to test that our (RFP/TB) defenses are holding up - so I'n not after outliers so to speak. I get into trying to get max entropy if it's something we haven't touched on. I even allow fingerprints to vary if for example you have the console open (seriously, look at the misc section and do some section reruns) - because FPs are fuzzy and can be altered after the fact or on the backend (in this case by sorting the array you get the same FP). That's a whole other field. I'm not trying to successfully ID anyone on repeat visits - heck, tons of metrics change with zoom). People need to understand what the tests are for on sites instead of claiming some sort of success or failure (it drives me )
As for fonts, I think the non RFP font vis (because I test all system fonts), the non-whitelist/bundled fonts (TB blocklist ones in my font object) is enough. TB should be solid except for perhaps variants in mac/windows. But font vis has a lot of room for permutations (and linux is a mess). So I think I'm good for now. I'd like TB windows/mac to move to all bundled at some stage (but I get it, CJK is huge) - again, with a survey we could tell and up the game based on results. I also think perhaps subpixels here play a larger part in my collected font sizes - I am experimenting with transforming the font!!!
Other font entropy is coming - variant testing (by changing font weight), and a more up to date tofu/glyph list. MathML is another that can really exploit subpixels too I think. combining various math notations to stack for height and width - 2 tests. I am building a PoC for this.
@thorin,
I run find /usr/share/fonts -type f | sort on Tails.
You can find the results attached. Is this what you need? if you need anything different, just let me know.