zenity/notify.go
2021-03-04 12:42:30 +00:00

9 lines
183 B
Go

package zenity
// Notify displays a notification.
//
// Valid options: Title, Icon.
func Notify(text string, options ...Option) error {
return notify(text, applyOptions(options))
}