notify-send 'why hello there'
notify-send
ist Teil des Pakets libnotify-tools
.
perl -MDesktop::Notify -e'Desktop::Notify->new->create(body => q)->show'
Desktop::Notify
ist auf CPAN verfügbar.
Wie schreibe ich aus einem Bash-Skript in das OSD oder den Benachrichtigungsbereich von KDE? Ich verwende KDE 4.5, und im Grunde möchte ich, dass mein Skript einiges berichtet, wenn es ausgeführt wird. Da ich das Skript über eine Verknüpfung ausführte, habe ich keine Konsolenausgabe, möchte jedoch OSD im Benachrichtigungsbereich schreiben.
Ich kenne und benutze "osd_cat", aber das bringt nur etwas hässlichen Text auf den Bildschirm.
Vielen Dank.
notify-send 'why hello there'
notify-send
ist Teil des Pakets libnotify-tools
.
perl -MDesktop::Notify -e'Desktop::Notify->new->create(body => q)->show'
Desktop::Notify
ist auf CPAN verfügbar.
Als Alternative:
kdialog --passivepopup 'why hello there' 5
5 ist die Anzahl Sekunden, die es dauert.
Laufen Sie kdialog --help
für andere Optionen wie title
.