Help for this page

Select Code to Download


  1. or download this
    # How many pictures you have in your rotate folder
    my $num_of_pics = 10;
    
  2. or download this
    # How many pictures you have in your rotate folder
    my $num_of_pics = () = <~/Pictures/rotate/*.jpg>;
    
  3. or download this
    my @all_pics = <~/Pictures/rotate/*.jpg>;
    
    print `feh --bg-center $all_pics[ rand @all_pics ]`;
    
  4. or download this
    # Get a random number from your total of pictures
    my $pic = int(rand($num_of_pics)+1); 
    chomp($pic);