mirror of
https://github.com/harish2704/dotFiles.git
synced 2026-09-10 07:11:09 +00:00
Fix malayalam font
This commit is contained in:
@@ -2,24 +2,24 @@
|
|||||||
<!DOCTYPE fontconfig SYSTEM 'urn:fontconfig:fonts.dtd'>
|
<!DOCTYPE fontconfig SYSTEM 'urn:fontconfig:fonts.dtd'>
|
||||||
<!-- SPDX-License-Identifier: MIT -->
|
<!-- SPDX-License-Identifier: MIT -->
|
||||||
<fontconfig>
|
<fontconfig>
|
||||||
<!-- Generic alias this font to sans-serif -->
|
<!-- Generic alias this font to sans-serif -->
|
||||||
<alias>
|
<alias>
|
||||||
<family>Manjari</family>
|
<family>sans-serif</family>
|
||||||
<default>
|
<prefer>
|
||||||
<family>sans-serif</family>
|
<family>Noto Sans</family>
|
||||||
</default>
|
<family>Noto Sans Malayalam</family>
|
||||||
</alias>
|
</prefer>
|
||||||
<!-- For Malayalam sans-serif, prefer this font -->
|
</alias>
|
||||||
<match>
|
<!-- For Malayalam sans-serif, prefer this font -->
|
||||||
<test compare="contains" name="lang">
|
<!-- <match> -->
|
||||||
<string>ml</string>
|
<!-- <test compare="contains" name="lang"> -->
|
||||||
</test>
|
<!-- <string>ml</string> -->
|
||||||
<test name="family">
|
<!-- </test> -->
|
||||||
<string>sans-serif</string>
|
<!-- <test name="family"> -->
|
||||||
</test>
|
<!-- <string>sans-serif</string> -->
|
||||||
<edit binding="strong" mode="prepend" name="family">
|
<!-- </test> -->
|
||||||
<string>Manjari</string>
|
<!-- <edit binding="strong" mode="prepend" name="family"> -->
|
||||||
</edit>
|
<!-- <string>Manjari</string> -->
|
||||||
</match>
|
<!-- </edit> -->
|
||||||
<dir>~/.fonts</dir>
|
<!-- </match> -->
|
||||||
</fontconfig>
|
</fontconfig>
|
||||||
|
|||||||
@@ -29,3 +29,10 @@ if test -z "$USER_PROFILEREAD"; then
|
|||||||
|
|
||||||
export USER_PROFILEREAD=1
|
export USER_PROFILEREAD=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -n "$BASH_VERSION" -a -n "$PS1" ]; then
|
||||||
|
# include .bashrc if it exists
|
||||||
|
if [ -f "$HOME/.bashrc" ]; then
|
||||||
|
. "$HOME/.bashrc"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user