Shard Detail

notify vv0.1.1

A Crystal library for desktop notifications.
crystal desktop-notifications dbus

Install & Use

Add the following code to your project's shard.yml under:

dependencies to use in production
- OR -
development_dependencies to use in development


notify:
  github: woodruffw/notify.cr

Readme

notify.cr

license Build Status

A Crystal library for Desktop Notifications compatible notification daemons. Uses DBus internally.

Important: Platforms with notification systems that don't use DBus/Desktop Notifications are currently not supported. If you'd like support for one of these platforms (e.g., macOS and Windows), please contribute one!

Installation

Add this to your application's shard.yml:

dependencies:
  notify:
    github: woodruffw/notify.cr

Usage

require "notify"

notifier = Notify.new

notifier.notify "hello", body: "<b>world!</b>"

Contributing

  1. Fork it (https://github.com/woodruffw/notify/fork)
  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 a new Pull Request

Contributors

  • woodruffw William Woodruff - creator, maintainer