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
  • 70,465
user299362
  • 11
  • 3
  • 1
    dupe http://askubuntu.com/questions/187022/how-can-i-send-a-custom-desktop-notification and http://askubuntu.com/questions/132592/how-do-i-send-a-notify-osd-message-to-a-remote-user-via-ssh – Rinzwind Oct 07 '15 at 06:53

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
  • 70,465
Bernmeister
  • 1,231
  • But "notify" is a GUI popup ;-) and notify-send -i {deal.ico} {message} will also use an icon in front of the message. – Rinzwind Oct 07 '15 at 06:52