Created
October 29, 2017 20:16
-
-
Save carstene1ns/576da2011b6d9a616d8fc0d1a5834b6c to your computer and use it in GitHub Desktop.
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