diff --git a/sway/wallpaper.pl b/sway/wallpaper.pl index 0cc9f6b..f013c21 100755 --- a/sway/wallpaper.pl +++ b/sway/wallpaper.pl @@ -11,7 +11,7 @@ use AnyEvent::Sway; our $s = AnyEvent::Sway->new(); our $o = $s->get_outputs->recv(); -die "No outputs detected.\n" unless (scalar(@$o) > 1); +die "No outputs detected.\n" unless (scalar(@$o)); sub usage() { @@ -74,10 +74,10 @@ sub choose_image push(@i,$_); } } - + return $i[rand(scalar(@i))] || return undef; } - + sub get_size { my $target = shift; @@ -102,15 +102,15 @@ sub crop my $cropped = $image; $cropped =~ s#^.*/([^/]*)\.([^\.]+)$#$1-cropped.$2#; - + use Image::Magick; my $im = Image::Magick->new(); - + $im->Read($image); my ($iw, $ih) = $im->Get("columns", "rows"); # Return full size if it is smaller in either dimension then the output - if ($iw < $ow || $ih < $oh) { + if ($iw <= $ow || $ih <= $oh) { print "Not cropping $image because it is too small\n"; $cropped =~ s#-cropped\.([^\.]+)$#\.$1#; use File::Copy; @@ -121,11 +121,11 @@ sub crop print "Image size: $iw $ih\n"; print "output size: $ow $oh\n"; - + my ($x, $y); $x = int(rand($iw-$ow)); $y = int(rand($ih-$oh)); - + print "Cropping $image ${ow}x${oh}+${x}+${y}\n"; my $err = $im->Crop(geometry=>"${ow}x${oh}+${x}+${y}"); die "$err" if ($err);