diff options
| author | 2020-04-27 10:44:39 -0700 | |
|---|---|---|
| committer | 2020-04-27 10:44:39 -0700 | |
| commit | a066a0845df8438b40e106bfbddbdd7e9fd16baa (patch) | |
| tree | 0552ccde0c498a9a3a026f22abf9a7160003c60b | |
| parent | 45063f303e89994accbfe1c34079b6510784cc0f (diff) | |
| download | new-dotfiles-a066a0845df8438b40e106bfbddbdd7e9fd16baa.tar.gz new-dotfiles-a066a0845df8438b40e106bfbddbdd7e9fd16baa.zip | |
Add fonts.conf
| -rw-r--r-- | fonts/.config/fontconfig/fonts.conf | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/fonts/.config/fontconfig/fonts.conf b/fonts/.config/fontconfig/fonts.conf new file mode 100644 index 0000000..ff41394 --- /dev/null +++ b/fonts/.config/fontconfig/fonts.conf @@ -0,0 +1,27 @@ +<?xml version='1.0'?> +<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> +<fontconfig> + <match target="font"> + <edit name="hinting" mode="assign"> + <bool>true</bool> + </edit> + + <edit name="hintstyle" mode="assign"> + <const>hintfull</const> + </edit> + + <edit name="antialias" mode="assign"> + <bool>true</bool> + </edit> + + <edit name="rgba" mode="assign"> + <const>rgb</const> + </edit> + + <edit name="lcdfilter" mode="assign"> + <const>lcddefault</const> + </edit> + </match> + + <dir>~/.fonts</dir> +</fontconfig> |
