SKPS
SKPS

Reputation: 5836

Ubuntu - Notifications/alarm after end of job execution in terminal

I work with a lot of simulations which often take sometime. In the meantime, I would prefer spending time writing article or other jobs. I have to check periodically when the simulation is going to end. Since there are lots of experts here, I wanted to ask which is the best way to notify when the job execution is done from terminal. Preferably a visual notification (like popup)?

Upvotes: 0

Views: 154

Answers (1)

ivann
ivann

Reputation: 334

Superuser might be more relevant for this question. For example this answer.

The simplest way would be to use notify-send:

sleep 5 && notify-send 'done'

Upvotes: 1

Related Questions