Skip to content

Commit

Permalink
Add fonts.conf to add rgba=none and when use kde font configurator do…
Browse files Browse the repository at this point in the history
…n't change all fontconfig
  • Loading branch information
bigbruno committed Jul 13, 2024
1 parent 59a221c commit bebaddd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions big-skel/etc/skel/.fonts.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<dir>~/.fonts</dir>
<match target="font">
<edit mode="assign" name="rgba">
<const>none</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="hinting">
<bool>true</bool>
</edit>
</match>
<match target="font">
<edit mode="assign" name="hintstyle">
<const>hintslight</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="antialias">
<bool>true</bool>
</edit>
</match>
</fontconfig>

0 comments on commit bebaddd

Please sign in to comment.