1

In my office environment I need to send a GUI pop-up message to all of the Ubuntu desktop clients in my network.

Is there any application I can use to do this?

Zanna
  • 72,312

1 Answers1

3

You could send via SSH a notify popup, assuming sshpass is installed on the host and ssh/notify on both host/client

sshpass -p password ssh -X user@10.0.0.5 "DISPLAY=:0 notify-send "My message...""

where you'd substitute your own password, user, IP address and message.

Zanna
  • 72,312
Bernmeister
  • 1,149