Guest User

Untitled

a guest
May 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.35 KB | None | 0 0
  1. #!/usr/bin/perl -w
  2.  
  3. my $hrs = `date -u +%H`;
  4. my $mins = `date -u +%M`;
  5.  
  6. $hrs += ($mins / 60);
  7.  
  8. my $long = (15 * $hrs) - 180;
  9.  
  10. system("xplanet -config /home/ross/.xplanet/xplanet.conf -hibernate 120 -output /home/ross/wallpaper/earth/earth.jpg -geometry 1680x1250 -projection mercator -longitude $long");
  11.  
  12. system("/home/ross/scripts/getclouds.sh");
Add Comment
Please, Sign In to add comment