Feature Request: More Feedback When Current Execution Completes

I would like it if KNIME could give more feedback when execution is done so I can be alerted when I’m not looking at the GUI or have it minimized.

For example, if it could play a sound, display a notification, flash the program in the task bar or something like that it would be pretty useful.

Hi @kwhipke1

beeping is already possible, just use a Java Snippet Variable and use the following code:

java.awt.Toolkit.getDefaultToolkit().beep();

Cheers, Iris

3 Likes

… and in case you’re on a Mac, there’s the Notifier:

3 Likes

That’s a good workaround, but it does require me to modify the structure of my workflow in order to add this capability. I may not always be executing up to the same point as I’m developing a long workflow, and I don’t want to leave those nodes lying around the workflow.