Description
golibnotify implements go bindings for libnotify to create, send, and update OS level notifications. It does not shell out to notify-send so it can update existing notifications as well as create new ones.
Installation
This package requires CGO and the libnotify (libnotify-dev) shared library to be installed.
On Ubuntu or Debian using apt, you can install with sudo apt-get install libnotify-dev
golibnotify alternatives and similar packages
Based on the "Video" category.
Alternatively, view golibnotify alternatives based on common mentions on social networks and blogs.
-
M3U8
DISCONTINUED. Parser and generator of M3U8-playlists for Apple HLS. Library for Go language. :cinema: -
go-m3u8
Parse and generate m3u8 playlists for Apple HTTP Live Streaming (HLS) in Golang (ported from gem https://github.com/sethdeckard/m3u8)
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of golibnotify or a related project?
README
golibnotify
golibnotify
implements go bindings for
libnotify
to create, send,
and update OS level notifications. It does not shell out to notify-send
so it
can update existing notifications as well as create new ones.
Installation
This package requires CGO and the libnotify (libnotify-dev
) shared library to be installed.
On Ubuntu or Debian using apt
, you can install with sudo apt-get install libnotify-dev
Usage
// Get an instance of a SimpleNotifier
notifier := golibnotify.NewSimpleNotifier("my-cool-app-name")
// Show a new notification
err = notifier.Show("A summary", "Some body text", "a/path/to/an/icon.png")
// Update an existing notification (or send a new one if one hasn't been sent)
err = notifier.Update("A new summary", "Some different body text", "another/path/to/icon.png")
// Remove an existing notification
err = notifier.Close()
See also examples for a complete example
Roadmap
- [ ] Add API that returns a Notification instance to manage multiple notifications at once
- [ ] Better support for notification icons (PixBuf?)
- [ ] Support notification timeouts
- [ ] Support notification urgencies
Contributions
Thanks for wanting to contribute!
- Open an issue describing your problem, solution, issue, suggestion, feature, etc. to ensure it's likely to get merged.
- Fork the project.
- Make your changes.
- Open a PR against
master
here. - Celebrate being awesome!
Author
*Note that all licence references and agreements mentioned in the golibnotify README section above
are relevant to that project's source code only.