Last active
December 19, 2023 04:09
-
-
Save Cysioland/28a3fdbf67f8673a12584a12f7b57ca7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="pattern"> | |
<test name="lang" compare="contains"> | |
<string>ar</string> | |
</test> | |
<test qual="any" name="family"> | |
<string>sans-serif</string> | |
</test> | |
<edit name="family" mode="prepend" binding="strong"> | |
<string>Noto Sans Arabic</string> | |
</edit> | |
</match> | |
<match target="pattern"> | |
<test name="lang" compare="contains"> | |
<string>ar</string> | |
</test> | |
<test qual="any" name="family"> | |
<string>serif</string> | |
</test> | |
<edit name="family" mode="prepend" binding="strong"> | |
<string>Noto Sans Arabic</string> | |
</edit> | |
</match> | |
<match target="scan"> | |
<test name="family" compare="not_eq"> | |
<string>Noto Sans Arabic</string> | |
</test> | |
<edit name="charset" mode="assign"> | |
<minus> | |
<name>charset</name> | |
<charset> | |
<range> | |
<int>0xFDFD</int> | |
<int>0xFDFD</int> | |
</range> | |
</charset> | |
</minus> | |
</edit> | |
</match> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment