Skip to content

Instantly share code, notes, and snippets.

@bessarabov
Created August 19, 2014 13:31
Show Gist options
  • Save bessarabov/511419cf328fc3d06b3e to your computer and use it in GitHub Desktop.
Save bessarabov/511419cf328fc3d06b3e to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
use warnings;
sub main {
my $message;
if (@ARGV) {
$message = join ' ', @ARGV;
$message =~ s/'/"/g;
} else {
$message = 'Message';
}
`terminal-notifier -message '$message' > /dev/null`;
`afplay /Users/bessarabov/Dropbox/chaos/note.mov`;
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment