please include function showFrameInBottomRightCorner. static JFrame showFrameInBottomRightCorner(Component c, int width, int height) { JFrame frame = makeFrame(defaultFrameTitle(), c, false); swing { Rectangle r = maxWindowBounds(); frame.setLocation( r.x+r.width-width-moveToBottomRightCorner_insetX, r.y+r.height-height-moveToBottomRightCorner_insetY); frame.setVisible(); } ret frame; }