diff options
author | terminaldweller <thabogre@gmail.com> | 2021-05-14 18:14:50 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-05-14 18:14:50 +0000 |
commit | 6e528248414e330c9e25e81596ab47b8b8a5b701 (patch) | |
tree | e1aa41a7f3198eeac187e6177ec7d4a33db229d3 /etc | |
download | scripts-6e528248414e330c9e25e81596ab47b8b8a5b701.tar.gz scripts-6e528248414e330c9e25e81596ab47b8b8a5b701.zip |
first commitmaster
Diffstat (limited to 'etc')
-rw-r--r-- | etc/fonts/local.conf | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/etc/fonts/local.conf b/etc/fonts/local.conf new file mode 100644 index 0000000..eeb3658 --- /dev/null +++ b/etc/fonts/local.conf @@ -0,0 +1,39 @@ +<?xml version='1.0'?> +<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> +<fontconfig> +<match target="font"> + <edit name="antialias" mode="assign_replace" binding="strong"> + <bool>true</bool> + </edit> + <edit name="autohint" mode="assign_replace" binding="strong"> + <bool>false</bool> + </edit> + <edit name="hinting" mode="assign_replace" binding="strong"> + <bool>true</bool> + </edit> + <edit name="hintstyle" mode="assign"> + <const>hintslight</const> + </edit> + <edit name="lcdfilter" mode="assign"> + <const>lcddefault</const> + </edit> + <edit name="width" mode="assign"> + <const>normal</const> + </edit> + <edit name="weight" mode="assign"> + <const>regular</const> + </edit> + <edit name="embolden" mode="assign"> + <bool>false</bool> + </edit> + <edit name="rgba" mode="assign"> + <const>rgb</const> + </edit> + <edit name="dpi" mode="assign"> + <double>75</double> + </edit> + <edit name="embeddedbitmap" mode="assign"> + <bool>true</bool> + </edit> +</match> +</fontconfig> |