mirror of
https://github.com/grassmunk/Chicago95.git
synced 2025-08-31 14:38:25 +02:00
Testing branding themes in the Whisker Menu to replicate Windows95 branding seen in the Start Menu Updating the MS Sans serif font config file to enable font hinting. As well as update install instructions
19 lines
463 B
XML
19 lines
463 B
XML
<?xml version='1.0'?>
|
|
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
|
|
<fontconfig>
|
|
<match target="font">
|
|
<test name="family" qual="any" compare="eq">
|
|
<string>Microsoft Sans Serif</string>
|
|
</test>
|
|
<edit name="antialias" mode="assign">
|
|
<bool>false</bool>
|
|
</edit>
|
|
<edit name="hinting" mode="assign">
|
|
<bool>true</bool>
|
|
</edit>
|
|
<edit name="embolden" mode="assign">
|
|
<bool>false</bool>
|
|
</edit>
|
|
</match>
|
|
</fontconfig>
|