Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version='1.0'?>
- <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
- <fontconfig>
- <match target="font">
- <edit mode="assign" name="antialias">
- <bool>true</bool>
- </edit>
- <edit mode="assign" name="autohint">
- <bool>false</bool>
- </edit>
- <edit mode="assign" name="embeddedbitmap">
- <bool>true</bool>
- </edit>
- <edit mode="assign" name="hinting">
- <bool>true</bool>
- </edit>
- <edit mode="assign" name="hintstyle">
- <const>hintslight</const>
- </edit>
- <edit mode="assign" name="lcdfilter">
- <const>lcddefault</const>
- </edit>
- <edit mode="assign" name="rgba">
- <const>rgb</const>
- </edit>
- </match>
- <match target="font">
- <test name="slant">
- <const>roman</const>
- </test>
- <test target="pattern" name="slant" compare="not_eq">
- <const>roman</const>
- </test>
- <edit mode="assign" name="matrix">
- <times>
- <name>matrix</name>
- <matrix>
- <double>1</double>
- <double>0.2</double>
- <double>0</double>
- <double>1</double>
- </matrix>
- </times>
- </edit>
- <edit mode="assign" name="slant">
- <const>oblique</const>
- </edit>
- </match>
- <match target="font">
- <test name="weight" compare="less_eq">
- <const>medium</const>
- </test>
- <test target="pattern" name="weight" compare="more_eq">
- <const>bold</const>
- </test>
- <edit mode="assign" name="embolden">
- <bool>true</bool>
- </edit>
- <edit mode="assign" name="weight">
- <const>bold</const>
- </edit>
- </match>
- <alias>
- <family>sans</family>
- <prefer>
- <family>Symbols Nerd Font</family>
- </prefer>
- </alias>
- <alias>
- <family>serif</family>
- <prefer>
- <family>Symbols Nerd Font</family>
- </prefer>
- </alias>
- <alias>
- <family>sans-serif</family>
- <prefer>
- <family>Symbols Nerd Font</family>
- </prefer>
- </alias>
- <alias>
- <family>monospace</family>
- <prefer>
- <family>Symbols Nerd Font</family>
- </prefer>
- </alias>
- <dir>~/.fonts</dir>
- </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement