How can I write, from a bash script, to KDE's OSD or notification area? I am using KDE 4.5, and basically what I want is my script to report some stuff when it is run. Since I run the script by a shortcut, I have no console output, but I would like to write to OSD on notification area.

I know about, and use, "osd_cat" but that just puts some ugly text on the screen.

Thanks.

link|improve this question
Usually, the answer to "How … kde4 … from the shell" starts with qdbus. I would expect something like qdbus org.kde.knotify /Notify event "notice" "my script" '(' ')' "title" "body" 0 '(' ')' 1000 0 to work, but it produces no visible effect on my Ubuntu 10.04 kde 4.4.2. – Gilles Aug 12 '10 at 9:13
By the way, this is what passes for the API documentation: api.kde.org/4.x-api/kdebase-runtime-apidocs/knotify/html/… – Gilles Aug 12 '10 at 9:15
feedback

2 Answers

up vote 3 down vote accepted
notify-send 'why hello there'

notify-send is part of the package libnotify.


perl -MDesktop::Notify -e'Desktop::Notify->new->create(body => q{why hello there})->show'

Desktop::Notify is available on CPAN.

link|improve this answer
feedback

As an alternative:

kdialog --passivepopup 'why hello there' 5

5 is the number of seconds it will last.
Run kdialog --help for other options, like title.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.