am i doing this right? claude is saying i should set up these settings in .config/fontconfig/fonts.conf
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- Enable subpixel rendering -->
<match target="font">
<edit name="rgba" mode="assign">
<const>rgb</const>
</edit>
</match>
<!-- Enable hinting -->
<match target="font">
<edit name="hinting" mode="assign">
<bool>true</bool>
</edit>
</match>
<!-- Hinting style: slight is usually best -->
<match target="font">
<edit name="hintstyle" mode="assign">
<const>hintslight</const>
</edit>
</match>
<!-- Enable antialiasing -->
<match target="font">
<edit name="antialias" mode="assign">
<bool>true</bool>
</edit>
</match>
<!-- LCD filter for subpixel rendering -->
<match target="font">
<edit name="lcdfilter" mode="assign">
<const>lcddefault</const>
</edit>
</match>
</fontconfig>
and then to do fc-cache -fv and it should give me font quality similar to winshit.
it still seems kinda off to me.
i also added this line to sway config
exec_always export FREETYPE_PROPERTIES="truetype:interpreter-version=40"
is this all wrong? claude gave a similar answer to what chatgpt already have.