23 lines
435 B
Go
23 lines
435 B
Go
package zenity
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/ncruces/zenity/internal/zenutil"
|
|
)
|
|
|
|
func notify(text string, opts options) error {
|
|
var data zenutil.Notify
|
|
data.Text = text
|
|
data.Options.Title = opts.title
|
|
|
|
if i := strings.IndexByte(text, '\n'); i >= 0 && i < len(text) {
|
|
data.Options.Subtitle = text[:i]
|
|
data.Text = text[i+1:]
|
|
}
|
|
_, err := zenutil.Run(opts.ctx, "notify", data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|