
Jaipo::Notify::LibNotify - A easy-to-use interface to show desktop notifications with libnotify.

Version 0.01

Jaipo::Notify::LibNotify is a easy-to-use interface to show desktop notifications with libnotify. It doesn't use libnotify directly, but talking to libnotify via dbus.
use Jaipo::Notify::LibNotify;
my $notify = Jaipo::Notify::LibNotify->new();
# yell for Service Notify.
$notify->yell('Cannot connect to M$-Mi$roBlo$: $!');
# display for message displaying.
$notify->display("From Mr.Right: Hello Darling. How are you today?");
# get current timeout setting
print Data::Dumper $notify->timeout;
# set yell timeout to 10 seconds. default is 5.
$notify->timeout("yell" => 10);
# set display timeout to 5 seconds. default is 3.
$notify->timeout("yell" => 5);

Return a object which talks to libnotify via dbus.
yell for Service Notify. Pops a notification with title "Jaipo Service Notify" and the given message content from you.
display for message displaying. Pops a notification with title "You've Got Message!" and the given message content from you.
timeout for changing/getting the current timeout value.

BlueT - Matthew Lien - ç·´åæ, <BlueT at BlueT.org>

Please report any bugs or feature requests to bug-jaipo-notify-libnotify at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Jaipo-Notify-LibNotify. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.
perldoc Jaipo::Notify::LibNotify
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Jaipo-Notify-LibNotify


Copyright 2009 BlueT - Matthew Lien - ç·´åæ, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.