github.com/im-kulikov/beeep

Go cross-platform library for sending desktop notifications and beeps


License
BSD-2-Clause
Install
go get github.com/im-kulikov/beeep

Documentation

beeep

TravisCI Build Status AppVeyor Build Status GoDoc Go Report Card

beeep provides a cross-platform library for sending desktop notifications and beeps.

Installation

go get -u github.com/gen2brain/beeep

Examples

err := beeep.Beep(beeep.DefaultFreq, beeep.DefaultDuration)
if err != nil {
    panic(err)
}
err := beeep.Notify("Title", "Message body")
if err != nil {
    panic(err)
}