Skip to content
/ beeep Public
forked from gen2brain/beeep

📢 Go cross-platform library for sending desktop notifications, alerts and beeps

License

Notifications You must be signed in to change notification settings

godoes/beeep

 
 

Repository files navigation

beeep

Build Status Go Reference Go Report Card

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

Installation

go get -u github.com/godoes/beeep

Build tags

  • nodbus - disable godbus/dbus and use only notify-send

Examples

err := beeep.Beep(beeep.DefaultFreq, beeep.DefaultDuration)
if err != nil {
    panic(err)
}
err := beeep.Notify("Title", "Message body", "assets/information.png")
if err != nil {
    panic(err)
}
err := beeep.Alert("Title", "Message body", "assets/warning.png")
if err != nil {
    panic(err)
}

About

📢 Go cross-platform library for sending desktop notifications, alerts and beeps

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 91.4%
  • Batchfile 8.6%