Skip to content

Commit

Permalink
rmcd.conf: fixed syntax error in example
Browse files Browse the repository at this point in the history
  • Loading branch information
trapd00r committed Sep 12, 2010
1 parent 8747076 commit 120ab97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rmcd.conf
Expand Up @@ -81,13 +81,13 @@ with the --ccp flag.
In the example we are using the Perl module Audio::MPD which provides a OOP
interface to the MPD API, but you could just use something along the lines of
chomp(my $file) = `mpc --format "%file%"|head -1`;
chomp(my $file = `mpc --format "%file%"|head -1`);
to get the filename.
=head3 Custom copying now playing track function that uses Audio::MPD and SSH
our $custom_cp =
our $custom_cp =
sub {
my $host = '192.168.1.111';
my $port = 22;
Expand Down

0 comments on commit 120ab97

Please sign in to comment.