-
-
Save qgustavor/6c493eb0860aaad2164f6b97534fc24e to your computer and use it in GitHub Desktop.
Crunchyroll font config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- https://static.crunchyroll.com/vilos-v2/web/vilos/assets/libass-wasm/4-0-0/subtitles-octopus-worker.data --> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<dir>/fonts</dir> | |
<match target="pattern"> | |
<test qual="any" name="family"> | |
<string>mono</string> | |
</test> | |
<edit name="family" mode="assign" binding="same"> | |
<string>monospace</string> | |
</edit> | |
</match> | |
<match target="pattern"> | |
<test qual="any" name="family"> | |
<string>sans serif</string> | |
</test> | |
<edit name="family" mode="assign" binding="same"> | |
<string>sans-serif</string> | |
</edit> | |
</match> | |
<match target="pattern"> | |
<test qual="any" name="family"> | |
<string>sans</string> | |
</test> | |
<edit name="family" mode="assign" binding="same"> | |
<string>sans-serif</string> | |
</edit> | |
</match> | |
<cachedir>/fontconfig</cachedir> | |
<config> | |
<rescan> | |
<int>30</int> | |
</rescan> | |
</config> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment