2022-06-28 09:52:02 -04:00
|
|
|
//go:build !windows && !darwin
|
|
|
|
|
|
|
|
package zenity
|
|
|
|
|
2022-12-14 18:53:30 -05:00
|
|
|
import "github.com/ncruces/zenity/internal/zenutil"
|
|
|
|
|
|
|
|
func isAvailable() bool { return zenutil.IsAvailable() }
|
|
|
|
|
|
|
|
func attach(id any) Option {
|
|
|
|
return funcOption(func(o *options) { o.attach = id.(int) })
|
2022-06-28 09:52:02 -04:00
|
|
|
}
|