diff options
author | Peter | 2021-11-02 00:04:55 +0000 |
---|---|---|
committer | Peter | 2021-11-02 00:04:55 +0000 |
commit | 9dcd8d1e05805b67f5d157260e0561f964805e11 (patch) | |
tree | cfac05720b3a41c6ffb482f2c91473bb82e8c6fd /.config/fontconfig/fonts.conf | |
parent | 90a46fe773a25f2818331df5079c4270ca9cb3b5 (diff) | |
download | dotfiles-9dcd8d1e05805b67f5d157260e0561f964805e11.tar.gz dotfiles-9dcd8d1e05805b67f5d157260e0561f964805e11.tar.bz2 dotfiles-9dcd8d1e05805b67f5d157260e0561f964805e11.zip |
Initial font config
Diffstat (limited to '.config/fontconfig/fonts.conf')
-rw-r--r-- | .config/fontconfig/fonts.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.config/fontconfig/fonts.conf b/.config/fontconfig/fonts.conf new file mode 100644 index 0000000..821ca1b --- /dev/null +++ b/.config/fontconfig/fonts.conf @@ -0,0 +1,24 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> +<fontconfig> + <match target="font"> + <edit name="autohint" mode="assign"> + <bool>false</bool> + </edit> + <edit name="hinting" mode="assign"> + <bool>true</bool> + </edit> + <edit name="antialias" mode="assign"> + <bool>true</bool> + </edit> + <edit mode="assign" name="hintstyle"> + <const>hintslight</const> + </edit> + <edit mode="assign" name="rgba"> + <const>rgb</const> + </edit> + <edit mode="assign" name="lcdfilter"> + <const>lcddefault</const> + </edit> + </match> +</fontconfig>
\ No newline at end of file |