summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter2021-11-02 00:04:55 +0000
committerPeter2021-11-02 00:04:55 +0000
commit9dcd8d1e05805b67f5d157260e0561f964805e11 (patch)
treecfac05720b3a41c6ffb482f2c91473bb82e8c6fd
parent90a46fe773a25f2818331df5079c4270ca9cb3b5 (diff)
downloaddotfiles-9dcd8d1e05805b67f5d157260e0561f964805e11.tar.gz
dotfiles-9dcd8d1e05805b67f5d157260e0561f964805e11.tar.bz2
dotfiles-9dcd8d1e05805b67f5d157260e0561f964805e11.zip
Initial font config
-rw-r--r--.config/fontconfig/fonts.conf24
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