NAME
Growl::NotifySend - Perl extention to do something
VERSION
This document describes Growl::NotifySend version 0.02.
SYNOPSIS
use Growl::NotifySend;
Growl::NotifySend->show(
summary => 'Hey!',
body => 'Good morning!',
);
DESCRIPTION
This is a wrapper to notify-send(1)
.
INTERFACE
Growl::NotifySend->show(%args | \%args)
Shows a notification with %args which are text strings.
- summary
-
The string displayed at the top of the notification.
- body
-
The string displayed at the bottom of the notification.
- urgency
-
The urgency level (
low
,normal
orcritical
). - expire_time
-
The timeout in milliseconds at which to expire the notification.
- category
-
The notification category.
DEPENDENCIES
Perl 5.8.1 or later, and notify-send(1)
included in the libnotify-bin
package.
BUGS
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.
SEE ALSO
AUTHOR
Fuji, Goro (gfx) <gfuji@cpan.org>
LICENSE AND COPYRIGHT
Copyright (c) 2011, Fuji, Goro (gfx). All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.