How can I display text in the system tray instead of an icon? I want to display a percentage for example.
final TrayIcon trayIcon = new TrayIcon(createImage("image.png", "tray icon"));
The code above is to set an icon, but how can I set text such as 100%
to display in the system tray? This is specifically on OSX.