zenity/notify_darwin.go

25 lines
449 B
Go
Raw Normal View History

2020-01-26 11:04:49 -05:00
package zenity
import (
"strings"
"github.com/ncruces/zenity/internal/zenutil"
)
func notify(text string, options []Option) error {
opts := applyOptions(options)
data := zenutil.Notify{
Text: text,
Title: opts.title,
}
if i := strings.IndexByte(text, '\n'); i >= 0 && i < len(text) {
data.Subtitle = text[:i]
data.Text = text[i+1:]
}
2020-01-28 07:46:43 -05:00
_, err := zenutil.Run(opts.ctx, "notify", data)
2020-01-26 11:04:49 -05:00
if err != nil {
return err
}
return nil
}