mirror of
https://github.com/miguelmota/cointop
synced 2024-11-16 21:25:38 +00:00
17 lines
467 B
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()
|
|
}
|