kevinschoon-pomo/vendor/github.com/0xAX/notificator
Kevin Schoon 797d43f7df update dependencies 2018-02-01 09:44:56 -05:00
..
example update dependencies 2018-02-01 09:44:56 -05:00
icon update dependencies 2018-02-01 09:44:56 -05:00
.gitignore update dependencies 2018-02-01 09:44:56 -05:00
LICENSE update dependencies 2018-02-01 09:44:56 -05:00
README.md update dependencies 2018-02-01 09:44:56 -05:00
notification.go update dependencies 2018-02-01 09:44:56 -05:00

README.md

notificator

Desktop notification with Golang for:

  • Windows with growlnotify;
  • Mac OS X with terminal-notifier (if installed) or osascript (native, 10.9 Mavericks or Up.);
  • Linux with notify-send for Gnome and kdialog for Kde.

Usage

package main

import (
  "github.com/0xAX/notificator"
)

var notify *notificator.Notificator

func main() {

  notify = notificator.New(notificator.Options{
    DefaultIcon: "icon/default.png",
    AppName:     "My test App",
  })

  notify.Push("title", "text", "/home/user/icon.png", notificator.UR_CRITICAL)
}

TODO

  • Add more options for different notificators.

Сontribution

  • Fork;
  • Make changes;
  • Send pull request;
  • Thank you.

author

@0xAX