SWT System Tray - Linux GTK Gnome Tray icons with “SWT” String on tray
I am configuring the system tray icons with the following code: /** * Configura os ícones da shell principal */ protected void setDiplayIcons(Shell shell){ Display display = shell.getDisplay(); InputStream inputImgTray = getClass().getClassLoader().getResourceAsStream(ImagensNaNOffline.IMG_LOGO_SEBRAE.getPath()); Image image = new Image(display, inputImgTray); shell.setImage(image); Tray tray = display.getSystemTray(); final ToolTip tip = new ToolTip(shell, SWT.BALLOON | SWT.ICON_INFORMATION); tip.setMessage("Balloon Message Goes Here!"); if(tray != null) { TrayItem trayItem = new TrayItem