8 lines
169 B
Go
8 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)
|
|
}
|