Change NetBeans Look / Feel UI

Can I somehow change the look of NetBeans? I know that it uses Swing, and usually applications that use Swing for their user interface can usually change the user interface layout.

By default, vomitastic appears for OSX and is only suitable for some kind of barebones default look. The whole look is too distracting and not needed.

+4
source share
3 answers

See the answer to this question: Feel yourself on NetBeans 6.5

0
source

Looks like this could be what I was looking for:

http://wiki.netbeans.org/FaqCustomLaf

+1
source

To change the default appearance of netbeans, 7.2.1 go to the home directory \ Program file \ netbeans 7.2.1 \ etc;

Now open the netbeans.confg file and find out the following text.

netbeans_default_options = "- J-client -J-Xss2m -J-Xms32m -J-XX: PermSize = 32m -J-Dapple.laf.useScreenMenuBar = true -J-Dapple.awt.graphics.UseQuartz = true -J -Dsun. java2d.noddraw = true -J-Dsun.zip.disableMemoryMapping = true "

Now add the following text ;

- laf com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel;

Now it will look:

netbeans_default_options = "- J-client -J-Xss2m -J-Xms32m -J-XX: PermSize = 32m -J-Dapple.laf.useScreenMenuBar = true -J-Dapple.awt.graphics.UseQuartz = true -J -Dsun. java2d.noddraw = true -J-Dsun.zip.disableMemoryMapping = true - laf com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel

// Now you can see the new look of netbeans (NimbusLookAndFeel)

+1
source

All Articles