2 ############################################################################
3 # soepkiptng (c) copyright 2000 Eric Lammerts <eric@lammerts.org>.
4 ############################################################################
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License, version 2, as
7 # published by the Free Software Foundation.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # A copy of the GNU General Public License is available on the World Wide Web
15 # at `http://www.gnu.org/copyleft/gpl.html'. You can also obtain it by
16 # writing to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
18 ############################################################################
23 # find program directory
26 my $l = readlink or die "readlink $_: $!\n";
27 if($l =~ m
|^/|) { $_ = $l; } else { s|[^/]*$|/$l|; }
30 my $progdir = abs_path
($1);
32 require "$progdir/soepkiptng.lib";
36 read_configfile
(\
%conf, $opt_c);
44 my $newmtime = (stat $conf{statusfile
})[9];
46 if(!$pic || -e
$pic) {
47 if($newmtime == $mtime) {
53 open F
, $conf{statusfile
} or next;
56 my ($nowplaying, $filename);
57 chop($nowplaying = <F
>);
58 chop($filename = <F
>);
61 chop ((undef, undef, undef, undef,
62 $now_playing->{artist
},
63 $now_playing->{title
},
64 $now_playing->{album
},
65 $now_playing->{track
}) = <F
>);
68 $nowplaying > 0 or next;
71 $filename =~ s
|/*[^/]+$||;
72 $filename =~ s
|.*/|$progdir/pictures
/|;
75 foreach(qw
/gif jpg jpeg/) {
76 if(-e
"$filename.$_") {
77 $pic = "$filename.$_";
83 system qw
/xloadimage -onroot -fullscreen -border black/, $pic;
85 warn "$filename not found\n";
86 if($conf{picture_bg
}) {
87 system qw
/xloadimage -onroot -fullscreen -border black/,
90 system "xsetroot -solid black";