notify-send 'why hello there'
notify-send
faz parte do pacote libnotify-tools
.
perl -MDesktop::Notify -e'Desktop::Notify->new->create(body => q{why hello there})->show'
Desktop::Notify
está disponível no CPAN.
Como posso escrever, de um script bash, no OSD do KDE ou na área de notificação? Eu estou usando o KDE 4.5, e basicamente o que eu quero é que meu script relate algumas coisas quando for executado. Como executo o script por um atalho, não tenho saída do console, mas gostaria de escrever no OSD na área de notificação.
Eu conheço e uso "osd_cat", mas isso apenas coloca algum texto feio na tela.
Obrigado.
notify-send 'why hello there'
notify-send
faz parte do pacote libnotify-tools
.
perl -MDesktop::Notify -e'Desktop::Notify->new->create(body => q{why hello there})->show'
Desktop::Notify
está disponível no CPAN.
Como alternativa:
kdialog --passivepopup 'why hello there' 5
5 é o número de segundos que durará.
Execute kdialog --help
para outras opções, como title
.
Tags bash kde notifications osd