You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/vendor/github.com/gen2brain/beeep/alert_darwin.go

17 lines
467 B
Go

// +build darwin,!linux,!freebsd,!netbsd,!openbsd,!windows,!js
package beeep
import "os/exec"
// Alert displays a desktop notification and plays a default system sound.
func Alert(title, message, appIcon string) error {
osa, err := exec.LookPath("osascript")
if err != nil {
return err
}
cmd := exec.Command(osa, "-e", `tell application "System Events" to display notification "`+message+`" with title "`+title+`" sound name "default"`)
return cmd.Run()
}