Skip to content

Instantly share code, notes, and snippets.

@r-darwish
Created February 25, 2018 20:25
Show Gist options
  • Save r-darwish/14f532d07dcbebc673928b05530fffcf to your computer and use it in GitHub Desktop.
Save r-darwish/14f532d07dcbebc673928b05530fffcf to your computer and use it in GitHub Desktop.
Hebrew Fontconfig
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="pattern">
<test name="lang" compare="contains">
<string>he</string>
</test>
<test qual="any" name="family">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Droid Sans Hebrew</string>
</edit>
</match>
<match target="pattern">
<test name="lang" compare="contains">
<string>he</string>
</test>
<test qual="any" name="family">
<string>serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Droid Sans Hebrew</string>
</edit>
</match>
</fontconfig>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment