Display display = new Display();
Shell shell = new Shell( display, SWT.NO_TRIM );
shell.setMaximized( true );
shell.setLayout( new FillLayout() );
shell.setBackground( display.getSystemColor( SWT.COLOR_BLACK ) );
hal = new Hal9000( shell );
registerAppStateListener();
shell.open();
return 0;
}