static int moveToBottomLeftCorner_inset = 20; static void moveToBottomLeftCorner(Component c) { Window w = getWindow(c); if (w != null) { Rectangle area = maxWindowBounds(); w.setLocation(area.x+moveToBottomLeftCorner_inset, area.y+area.height-moveToBottomLeftCorner_inset-w.getHeight()); } }