Created
October 29, 2017 20:16
Better font rendering for RPG_RT.exe in wine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0'?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<!-- load default settings --> | |
<include>/etc/fonts/fonts.conf</include> | |
<!-- disable anti-aliasing --> | |
<match target="font"> | |
<edit mode="assign" name="rgba"> | |
<const>none</const> | |
</edit> | |
</match> | |
</fontconfig> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
export FONTCONFIG_FILE=$HOME/.wine/fonts-noaa.conf | |
exec wine RPG_RT.exe x x Window |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment