zenity/notify_test.go

11 lines
207 B
Go
Raw Normal View History

2020-01-26 11:04:49 -05:00
package zenity_test
import "github.com/ncruces/zenity"
func ExampleNotify() {
2020-01-26 11:31:23 -05:00
zenity.Notify("There are system updates necessary!",
zenity.Title("Warning"),
zenity.Icon(zenity.InfoIcon))
2020-01-26 11:04:49 -05:00
// Output:
}