Advertisement
koen_hendriks

Sleep tight!

Jun 3rd, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. $application = 'spotify';
  3. $kill = exec('pidof '.$application);
  4. $minutes = 120;
  5.  
  6. exec('clear');
  7. echo "All set ready to go! \n Going to quit ". $application ." in ". $minutes ." minutes...\n";
  8. while($minutes != 0)
  9. {
  10.     $minutes = $minutes - 1;
  11.     sleep(60);
  12.     echo $minutes." minutes left \n";
  13. }
  14.  
  15. exec('kill '.$kill);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement