I want the JFrame that is produced by Lanterna, to be centered on the screen, instead of being in the top-left corner.
DefaultTerminalFactory defaultTerminalFactory = new DefaultTerminalFactory();
defaultTerminalFactory.setInitialTerminalSize(new TerminalSize(STARTING_TERMINAL_COLUMNS, STARTING_TERMINAL_ROWS));
defaultTerminalFactory.setTerminalEmulatorTitle("Title");
term = defaultTerminalFactory.createTerminal();
screen = new TerminalScreen(term);