Skip to content

Instantly share code, notes, and snippets.

@flying-sheep
Created July 16, 2011 22:00
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 flying-sheep/1086849 to your computer and use it in GitHub Desktop.
Save flying-sheep/1086849 to your computer and use it in GitHub Desktop.
A perl script to notify oneself
#!/usr/bin/env perl
use strict;
use warnings;
use autodie;
use feature 'switch';
use English '-no_match_vars';
$| = 1;
my $msg = '';
sub parse {
my $state = 'msg';
foreach my $arg (@ARGV) {
given ($state) {
when('msg') {
if ($arg =~ /at|in/) {
if (!$msg) {return}
$state = $arg;
} else {
$msg .= " $arg";
}
}
when('at') {
my ($_,$min,$hour,,,,,,) = localtime;
my ($newhour, $newmin) = split /:/, $arg;
my $hdiff = $newhour - $hour;
my $mdiff = $newmin - $min;
my $diff = (($hdiff * 60) + $mdiff) * 60;
if ($diff < 0) {$diff += 24 * 3600}
print "notification in $diff seconds\n";
sleep $diff;
return 1;
}
when('in') {
#TODO
}
}
}
}
sub executable {
foreach my $p (split /:/, $ENV{'PATH'}) {
if (-x $p.'/'.$_[0]) {return 1}
}
}
if (parse) {
if (executable('kdialog')) {
`kdialog --title Remember --passivepopup "$msg"`;
} elsif (executable('zenity')) {
`zenity --title=Remember --notification "$msg"`;
} else {
print $msg;
}
} else {
print {*STDERR} "Usage: $PROGRAM_NAME <thing-to-remember> [at <hour>:<min> | in [<hh> [h|hours] [and]] <mm> [m|minutes]]\n";
exit 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment