NickLion commented on issue #4228:
URL: https://github.com/apache/netbeans/issues/4228#issuecomment-1158773795
If there is issue for some people with KDE + OpenJDK, maybe something like
this would be fine:
```
case "$(command xrdb -query 2> /dev/null | grep Xft.rgba | cut
-d ':' -f2 | xargs)" in
rgb)
extra_automatic_options="-J-Dawt.useSystemAAFontSettings=lcd"
;;
bgr)
extra_automatic_options="-J-Dawt.useSystemAAFontSettings=lcd_hbgr"
;;
vrgb)
extra_automatic_options="-J-Dawt.useSystemAAFontSettings=lcd_vrgb"
;;
vbgr)
extra_automatic_options="-J-Dawt.useSystemAAFontSettings=lcd_vbgr"
;;
*)
extra_automatic_options="-J-Dawt.useSystemAAFontSettings=on"
;;
esac
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists