summaryrefslogtreecommitdiffstats
path: root/fontconfig
diff options
context:
space:
mode:
Diffstat (limited to 'fontconfig')
-rw-r--r--fontconfig/.config/fontconfig/fonts.conf34
1 files changed, 34 insertions, 0 deletions
diff --git a/fontconfig/.config/fontconfig/fonts.conf b/fontconfig/.config/fontconfig/fonts.conf
new file mode 100644
index 0000000..6204d1f
--- /dev/null
+++ b/fontconfig/.config/fontconfig/fonts.conf
@@ -0,0 +1,34 @@
+<?xml version="1.0"?>
+<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
+<fontconfig>
+
+ <!-- settings go here -->
+ <match target="pattern">
+ <edit name="antialias" mode="assign">
+ <bool>true</bool>
+ </edit>
+
+ <edit name="hinting" mode="assign">
+ <bool>true</bool>
+ </edit>
+
+ <edit name="hintstyle" mode="assign">
+ <const>hintslight</const>
+ </edit>
+
+ <edit name="rgba" mode="assign">
+ <const>rgb</const>
+ </edit>
+
+ <edit name="autohint" mode="assign">
+ <bool>true</bool>
+ </edit>
+ </match>
+
+ <match target="font">
+ <edit name="lcdfilter" mode="assign">
+ <const>lcddefault</const>
+ </edit>
+ </match>
+
+</fontconfig>