Skip to content

Instantly share code, notes, and snippets.

@bodrulamin
Last active March 22, 2023 20:46
Show Gist options
  • Save bodrulamin/980cb093267f306b55a8fb0cf98b33d1 to your computer and use it in GitHub Desktop.
Save bodrulamin/980cb093267f306b55a8fb0cf98b33d1 to your computer and use it in GitHub Desktop.
Manjaro xfce bengali font Problem solve. copy this file to (if directory not exist create one) ~/.config/fontconfig/conf.d/90-bn.conf
<fontconfig>
<match target="pattern">
<test name="lang" compare="contains">
<string>bn</string>
</test>
<test qual="any" name="family">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Noto Sans Bengali</string>
</edit>
</match>
<match target="pattern">
<test name="lang" compare="contains">
<string>bn</string>
</test>
<test qual="any" name="family">
<string>serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Noto Sans Bengali</string>
</edit>
</match>
</fontconfig>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment