1

I have installed libnotify-bin, and notify-osd

All looks good. Yet when I do

$notify-send 'hello'

I see nothing

Is there a service that I should turn on or something?

Jerry

Seamus
  • 21,868
  • 3
  • 33
  • 70

2 Answers2

2

For Posterity:

All the descriptions I saw stated that it sent notifications "to a notification daemon"

So I did a apt-cache search of notification daemon, and got a few.

I installed:

sudo apt-get install mate-notification-daemon mate-notification-daemon-common

and did the notify-send, and it now works fine.

  • Hello Jerry - Please accept your answer by clicking on the "check mark". Otherwise, this Q will be floating around in the system, and recycled continuously. – Seamus Sep 30 '20 at 23:13
1

I'm not a notify-send user, but you might try the following:

  1. read the man page for send-notify; i.e. from the command prompt:

man notify-send

  1. if that fails, read this related Q&A which gives some specific advice.

Let us know if that doesn't work.

Also, you can find useful answers on your own using 'Google'. For example, try Googling notify-send raspberry pi. If you do this, you'll find the linked Q&A above in the 2nd position, and other potentially useful information. In other words, "read first, question later"

Seamus
  • 21,868
  • 3
  • 33
  • 70