I know that it is possible to create a tray icon for a node-webkit application like so:
var tray = new gui.Tray({ title: 'Tray', icon: 'img/icon.png' });
but on Ubuntu the title won't be displayed. Is there anyway to achieve this?
I would like to use the tray icon to display dynamic information, which would be really annoying to do by changing the icon itself.
I would also be fine with using electron, if there is a way to implement it there.
EDIT:
For those interested in participating: I created some issues on github for electron and for chromium.