Skip to content

Instantly share code, notes, and snippets.

View m1kc's full-sized avatar

Max Musatov m1kc

View GitHub Profile
{
"node": true,
"undef": true,
"bitwise": true,
"latedef": true,
"trailing": true,
"maxlen": 120
}
@m1kc
m1kc / setLookAndFeel.java
Created August 9, 2012 20:10
setLookAndFeel()
private static void setLookAndFeel()
{
// Well, let's try to set Nimbus explicitly first.
try
{
UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
System.out.println("LaF: com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
return; // success
}
catch(Throwable ex)