All Projects → gen2brain → Beeep

gen2brain / Beeep

Licence: bsd-2-clause
Go cross-platform library for sending desktop notifications, alerts and beeps

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Beeep

Overseerr
Request management and media discovery tool for the Plex ecosystem
Stars: ✭ 557 (-22.21%)
Mutual labels:  notifications
Swiftoverlays
SwiftOverlays is a Swift GUI library for displaying various popups and notifications
Stars: ✭ 621 (-13.27%)
Mutual labels:  notifications
Terminal Notifier
Send User Notifications on macOS from the command-line.
Stars: ✭ 5,766 (+705.31%)
Mutual labels:  notifications
Laravel Failed Job Monitor
Get notified when a queued job fails
Stars: ✭ 582 (-18.72%)
Mutual labels:  notifications
Socket.io Push
整合了小米,华为,友盟,谷歌,苹果推送的统一解决方案
Stars: ✭ 605 (-15.5%)
Mutual labels:  notifications
Countly Sdk Android
Countly Product Analytics Android SDK
Stars: ✭ 626 (-12.57%)
Mutual labels:  notifications
Cogo Toast
Beautiful, Zero Configuration, Toast Messages for React. Only ~ 4kb gzip, with styles and icons
Stars: ✭ 557 (-22.21%)
Mutual labels:  notifications
Opensource Socialnetwork
Open Source Social Network (OSSN) is a social networking software written in PHP. It allows you to make a social networking website and helps your members build social relationships, with people who share similar professional or personal interests. It is available in 16 international languages.
Stars: ✭ 710 (-0.84%)
Mutual labels:  notifications
Applozic Android Sdk
Android Real Time Chat & Messaging SDK
Stars: ✭ 611 (-14.66%)
Mutual labels:  notifications
Vue Notifications
Vue.js agnostic library for non-blocking notifications
Stars: ✭ 644 (-10.06%)
Mutual labels:  notifications
Badgehub
A way to quickly add a notification badge icon to any view. Make any view of a full-fledged animated notification center.
Stars: ✭ 592 (-17.32%)
Mutual labels:  notifications
Gsmessages
A simple style messages/notifications, in Swift.
Stars: ✭ 595 (-16.9%)
Mutual labels:  notifications
Ipokego
A native iOS client to map the Pokemon around you!
Stars: ✭ 637 (-11.03%)
Mutual labels:  notifications
Toastify Js
Pure JavaScript library for better notification messages
Stars: ✭ 570 (-20.39%)
Mutual labels:  notifications
Notify
Simplified notification construction and delivery for Android.
Stars: ✭ 691 (-3.49%)
Mutual labels:  notifications
Tsmessages
💌 Easy to use and customizable messages/notifications for iOS à la Tweetbot
Stars: ✭ 4,927 (+588.13%)
Mutual labels:  notifications
Notify
File system event notification library on steroids.
Stars: ✭ 624 (-12.85%)
Mutual labels:  notifications
Diun
Receive notifications when an image is updated on a Docker registry
Stars: ✭ 704 (-1.68%)
Mutual labels:  notifications
Zabbix In Telegram
Zabbix Notifications with graphs in Telegram
Stars: ✭ 710 (-0.84%)
Mutual labels:  notifications
Server
A simple server for sending and receiving messages in real-time per WebSocket. (Includes a sleek web-ui)
Stars: ✭ 6,858 (+857.82%)
Mutual labels:  notifications

beeep

TravisCI Build Status AppVeyor Build Status GoDoc Go Report Card

beeep provides a cross-platform library for sending desktop notifications, alerts 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", "assets/information.png")
if err != nil {
    panic(err)
}
err := beeep.Alert("Title", "Message body", "assets/warning.png")
if err != nil {
    panic(err)
}

macOS

For icons to show up when using Alert() or Notify(), you will need to bundle your application with a app icon.

More

For cross-platform dialogs and input boxes see dlgs.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].