Skip to content

Instantly share code, notes, and snippets.

@tsathis
Created April 4, 2021 07:23
Show Gist options
  • Save tsathis/ee99f13a1b551cee79fd904f976ac9ae to your computer and use it in GitHub Desktop.
Save tsathis/ee99f13a1b551cee79fd904f976ac9ae to your computer and use it in GitHub Desktop.
Replace default font for Sinhala lang - ubuntu
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="pattern">
<test name="lang">
<string>si</string>
</test>
<test qual="any" name="family">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend">
<string>Noto Sans Sinhala UI</string>
</edit>
</match>
<match target="pattern">
<test name="lang">
<string>si</string>
</test>
<test qual="any" name="family">
<string>serif</string>
</test>
<edit name="family" mode="prepend">
<string>Noto Serif Sinhala</string>
</edit>
</match>
</fontconfig>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment