// Set font
InputStream inputStream = Application.class.getClassLoader()
.getResourceAsStream("font/C64_Pro_Mono-STYLE.ttf");
Font font = null;
try {
Font fontTmp = Font.createFont(Font.TRUETYPE_FONT, inputStream);
font = fontTmp.deriveFont(fontSize);
} catch (IOException | FontFormatException e) {
e.printStackTrace();
return;
}
inputStream.close();
terminalFactory.setTerminalEmulatorFontConfiguration(
SwingTerminalFontConfiguration.newInstance(font));