Wednesday, February 22, 2012

Configure netbeans fonts in ubuntu

sudo gedit /usr/local/netbeans-7.1/etc/netbeans.conf

locate
netbeans_default_options=

add this at the end of the line
--laf Nimbus -J-Dswing.aatext=true -J-Dawt.useSystemAAFontSettings=lcd

or just this, if you don't won't the new java look.
-J-Dswing.aatext=true -J-Dawt.useSystemAAFontSettings=lcd

No comments:

Post a Comment

Git get all remote branches

git branch -r \ | grep -v '\->' \ | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" \ | while read remote; do \ git branc...