Add Java arguments to enable Anti-Aliasing to bash script

This commit is contained in:
ಠ_ಠ
2022-07-20 14:55:32 +02:00
committed by GitHub
parent 005455b579
commit a7295226e2

View File

@@ -107,5 +107,5 @@ then
else
# Start Processing in the same directory as this script
cd "$APPDIR"
java -Djna.nosys=true -Dpython.console.encoding=UTF-8 -Xmx512m --add-opens=java.desktop/sun.awt.X11=ALL-UNNAMED processing.app.ui.Splash "$@" &
java -Djna.nosys=true -Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dpython.console.encoding=UTF-8 -Xmx512m --add-opens=java.desktop/sun.awt.X11=ALL-UNNAMED processing.app.ui.Splash "$@" &
fi