App-PandoraPerisope

 view release on metacpan or  search on metacpan

lib/App/PandoraPeriscope.pm  view on Meta::CPAN

use v5.10;
use strict;
use warnings;

package App::PandoraPeriscope;
# ABSTRACT: A Periscope for Pandora

use File::Spec;
use File::Basename;

use Periscope;

my $URL   = 'http://pandora.com';
my $TITLE = 'Pandora Periscope';
my $ICON  = File::Spec->join(dirname(__FILE__), '..', '..', 'extra', 'Pandora.png');

sub exec {
	Periscope->new(address => $URL, title => $TITLE, icon => $ICON, width => 800, height => 600)->show;
}

1;



( run in 1.889 second using v1.01-cache-2.11-cpan-df04353d9ac )