Popularity
1.4
Stable
Activity
0.0
Stable
8
2
0

Monthly Downloads: 0
Programming language: Elixir
License: MIT License
Tags: Miscellaneous    

growl alternatives and similar packages

Based on the "Miscellaneous" category.
Alternatively, view growl alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of growl or a related project?

Add another 'Miscellaneous' Package

README

Growl

A simple wrapper to the command line interface for the Growl OSX notification system.

Setup

defp deps do
  [
    {:growl, github: "zachallett/growl"}
  ]

Usage

Within the script you would like to create a growl notification, make the module call as follows:

Growl.notify("This is a notification")

The API accepts messages in a string format, as well as a list. If the first argument is a list, the first object is the title line, with subsequent lines being the body of the notification.

Growl.notify(["Example", "This is an example notification"])

would give the following notification:

Forced Update)

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request