zenity/notify.go
2020-01-27 16:10:04 +00:00

9 lines
169 B
Go

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