0xAX / notificator

Desktop notifications with golang
BSD 3-Clause "New" or "Revised" License
441 stars 49 forks source link

notificator

Desktop notification with Golang for:

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

Сontribution

author

@0xAX