Skip to content

Instantly share code, notes, and snippets.

@Cysioland
Last active December 19, 2023 04:09
Show Gist options
  • Save Cysioland/28a3fdbf67f8673a12584a12f7b57ca7 to your computer and use it in GitHub Desktop.
Save Cysioland/28a3fdbf67f8673a12584a12f7b57ca7 to your computer and use it in GitHub Desktop.
<?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