Sha256: 6585078cff943969a42f0178c9343f93a486d26c69f75fe5d011b4aef6a7a10b
Contents?: true
Size: 1.92 KB
Versions: 1
Compression:
Stored size: 1.92 KB
Contents
= post-it - Send post-it notes Notification Center on Mac OS X. Author:: Joe Workman (joe at workmanmail.com) Copyright:: Copyright (c) 2012 Joe Workman License:: Distributes under the MIT license, see LICENSE.txt in the source distro {Sticky Notifications}[http://click.linksynergy.com/fs-bin/stat?id=oqL0KdXmKTI&offerid=146261&type=3&subid=0&tmpid=1826&RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fsticky-notifications%252Fid552377168%253Fmt%253D12%2526uo%253D4%2526partnerId%253D30] is a Mac Application developed by the brilliant {Matt Gemmell}[http://mattgemmell.com]. It allows you to create post-it note style reminders into Notification Center (Mountain Lion or later) or Growl. Post-It is a simple utility that uses {Sticky Notifications}[http://click.linksynergy.com/fs-bin/stat?id=oqL0KdXmKTI&offerid=146261&type=3&subid=0&tmpid=1826&RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fsticky-notifications%252Fid552377168%253Fmt%253D12%2526uo%253D4%2526partnerId%253D30] to post messages to Notification Center on Mac OS X. You can now easily send yourself notifications from command-line or your own scripts and applications. **Important**: This utility will only function if you have Sticky Notifications.app v1.0.4+ installed. == Links * {Source on Github}[GITHUB] * RDoc[LINK TO RDOC.INFO] == Install Install: gem install post-it == Shell Examples Post a simple message: post-it "My Message" Post with custom titles: post-it -t "My Title" -s "My Subtitle" "My Message" Prepare a message in SN: post-it --prepare -t "My Title" -s "My Subtitle" "My Message" == Ruby Examples Quick and dirty notifications: post_it = PostIt::Notification.new() post_it.send("My Message") You can define default values: post_it = PostIt::Notification.new({:title => "My Title", :subtitle => "My Subtitle"}) Pass options to send method: post_it.send(message,{:prepare => true,:title => "My Title"})
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
post-it-1.0.2 | README.rdoc |