Fix experimental warnings
[app-xmms2-notifier.git] / xmms2-notifier
index 437b68167217465efde2aef794a518c6dc5eaf73..a4812ae1e487bfdc2e062375983836ab69ad140d 100755 (executable)
@@ -1,10 +1,13 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
 use v5.14;
 use warnings;
 
 use App::XMMS2::Notifier;
+use Getopt::Long;
 
-App::XMMS2::Notifier->run
+my $format = '$artist - $title';
+GetOptions ("format=s" => \$format);
+App::XMMS2::Notifier::run($format)
 
 __END__
 
This page took 0.009024 seconds and 4 git commands to generate.