zenity/notify_test.go
2020-01-26 16:31:23 +00:00

11 lines
207 B
Go

package zenity_test
import "github.com/ncruces/zenity"
func ExampleNotify() {
zenity.Notify("There are system updates necessary!",
zenity.Title("Warning"),
zenity.Icon(zenity.InfoIcon))
// Output:
}