annotate-notification.pl

Perl script to generate a notification when annotations have been completed. - Anirvan Sarkar, 01/18/2013 03:32 pm

Download (249 Bytes)

 
1
#!/usr/bin/perl
2
3
use Gtk2::Notify -init, "Auto Multiple Choice";
4
my $notification = Gtk2::Notify->new("Auto Multiple Choice", "Annotations have been completed", "/usr/share/auto-multiple-choice/icons/auto-multiple-choice.svg");
5
$notification->show;