Skip to content

Instantly share code, notes, and snippets.

@awwaiid
Created April 9, 2015 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awwaiid/fc6e88ff1ecd846bc438 to your computer and use it in GitHub Desktop.
Save awwaiid/fc6e88ff1ecd846bc438 to your computer and use it in GitHub Desktop.
Skip to next song or exit
my $in_break = False;
signal(Signal::SIGINT).tap: {
exit if $in_break;
$in_break = True;
say "Going to next song...";
sleep 5; # Give them a chance to interrupt again
$in_break = False;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment