summaryrefslogtreecommitdiffstats
path: root/scripts/amarok_ssh.pl
diff options
context:
space:
mode:
authorDavid Leadbeater2015-01-10 17:00:55 +0000
committerDavid Leadbeater2015-01-10 17:00:55 +0000
commit6fa0cda4b3f7d54d5835fe580795e4f35980cc28 (patch)
tree5f38704d7c9babab81a9c2b895efa2cbe968f178 /scripts/amarok_ssh.pl
parentcbbdf2a1d93dbb64d3fb34346e9c57b14dfa2931 (diff)
parentd2b44a7bb135579368f93e7d4824480c000eaa64 (diff)
downloadscripts.irssi.org-6fa0cda4b3f7d54d5835fe580795e4f35980cc28.tar.bz2
Merge pull request #78 from obfuscoder/perlcritic-a
Fix perlcritic issues for all scripts starting with a
Diffstat (limited to 'scripts/amarok_ssh.pl')
-rw-r--r--scripts/amarok_ssh.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/amarok_ssh.pl b/scripts/amarok_ssh.pl
index 091c318..22206c3 100644
--- a/scripts/amarok_ssh.pl
+++ b/scripts/amarok_ssh.pl
@@ -19,7 +19,7 @@ Irssi::settings_add_bool('amarok', 'amarok_use_ssh', 1);
Irssi::settings_add_str('amarok', 'amarok_ssh_client', 'localhost');
Irssi::settings_add_str('amarok', 'amarok_dcop_user', '');
-sub show_help() {
+sub show_help {
my $help = $IRSSI{name}." ".$VERSION."
/amarok song [loud]
Prints the artist and title of the song which is currently played.
@@ -65,7 +65,7 @@ my $amarok_use_ssh = Irssi::settings_get_bool('amarok_use_ssh');
my $ssh_client = Irssi::settings_get_str('amarok_ssh_client');
my $dcop_user = Irssi::settings_get_str('amarok_dcop_user');
-sub cmd ($) {
+sub cmd {
my ($postcmd) = @_;
my $dcop_precmd = 'dcop --user '.$dcop_user.' amarok player';
@@ -78,7 +78,7 @@ sub cmd ($) {
}
}
-sub amarokSong ($$) {
+sub amarokSong {
my($witem, $me_cmd) = @_;
if ($me_cmd == 1) {
if (!$witem or $witem->{type} ne 'CHANNEL') {
@@ -99,7 +99,7 @@ sub amarokSong ($$) {
}
}
-sub amarokTime($$) {
+sub amarokTime {
my ($witem, $me_cmd) = @_;
if ($me_cmd == 1 and (!$witem or $witem->{type} ne 'CHANNEL')) {
print CLIENTCRAP $preprint."The option 'loud' can only be used in channels.";
@@ -142,7 +142,7 @@ sub amarokTime($$) {
}
}
-sub amarokSeek ($) {
+sub amarokSeek {
my($time) = @_;
# format correct?
@@ -194,7 +194,7 @@ sub amarokSeek ($) {
print CLIENTCRAP $preprint.'Seeked to '.$newtime.'.';
}
-sub cmd_amarok ($$$) {
+sub cmd_amarok {
my ($args, $server, $witem) = @_;
my @arg = split(/ /, $args);