beeep icon indicating copy to clipboard operation
beeep copied to clipboard

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

Results 21 beeep issues
Sort by recently updated
recently updated
newest added

It looks like it is possible for OSX: https://github.com/gen2brain/beeep/pull/13 It does not currently work for Linux though.

The above tools yield much nicer notifications/alerts in my opinion and as far as I can tell, they also allow using non-bundled icons: - https://github.com/julienXX/terminal-notifier - https://github.com/vjeantet/alerter

As the title says, with the example like : ``` package main import ( "github.com/gen2brain/beeep" ) func main() { err := beeep.Notify("Title", "Message body", "") if err != nil {...

It would be a good feature if this could have blinking alerts on the application icon.

Would be nice if `beeep` offered a way to supply raw image data as a blob.

For the notifications, it would be cool if it had the options of electron: https://electronjs.org/docs/api/notification https://electronjs.org/docs/tutorial/notifications This includes clickability, different buttons on the notifications etc

There is a way so that when the user gets a notification, they can click it and it will open an application, passing in a route path and it will...

Would love to be able to add a clickable link to notifications. Not sure how this would be implemented cross-platform, but toast on windows 10 has the capability (see https://github.com/go-toast/toast)....

When sending a notification on Windows 11, all the content of the terminal is cleared while sending it. Me and my friend @el2zay can reproduce it with the examples in...

https://specifications.freedesktop.org/notification-spec/notification-spec-latest.html Taken from the spec: Urgency Levels Notifications have an urgency level associated with them. This defines the importance of the notification. For example, "Joe Bob signed on" would be...