Created
December 2, 2009 23:50
-
-
Save bonkydog/247744 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require "rubygems" | |
require "g" | |
# check "Listen for incoming notifications" in your Growl preference pane | |
begin | |
raise if ARGV.size != 1 | |
fork do | |
Process.setpgrp | |
sleep(ARGV[0].to_f * 60) | |
g "Tea!" | |
end | |
rescue | |
puts "usage: tea minutes" | |
exit -1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment