| 123456789101112131415 |
- package notifications
- import "github.com/gen2brain/beeep"
- func sendDesktopNotification(title string, message string, image string, playSound bool, duration int) error {
- if err := beeep.Notify(title, message, image); err != nil {
- return err
- }
- if playSound {
- return beeep.Beep(beeep.DefaultFreq, duration)
- }
- return nil
- }
|