zenity/notify_darwin.go

24 lines
435 B
Go
Raw Normal View History

2020-01-26 11:04:49 -05:00
package zenity
import (
"strings"
"github.com/ncruces/zenity/internal/zenutil"
)
2021-03-04 07:42:30 -05:00
func notify(text string, opts options) error {
2021-02-19 12:46:47 -05:00
var data zenutil.Notify
data.Text = text
data.Options.Title = opts.title
2020-01-26 11:04:49 -05:00
if i := strings.IndexByte(text, '\n'); i >= 0 && i < len(text) {
2021-02-19 12:46:47 -05:00
data.Options.Subtitle = text[:i]
2020-01-26 11:04:49 -05:00
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
}