28 lines
568 B
Go
28 lines
568 B
Go
//go:build !windows && !darwin
|
|
|
|
package zenity
|
|
|
|
import (
|
|
"image/color"
|
|
|
|
"github.com/ncruces/zenity/internal/zenutil"
|
|
)
|
|
|
|
func selectColor(opts options) (color.Color, error) {
|
|
args := []string{"--color-selection"}
|
|
|
|
args = appendGeneral(args, opts)
|
|
if opts.color != nil {
|
|
args = append(args, "--color", zenutil.UnparseColor(opts.color))
|
|
}
|
|
if opts.showPalette {
|
|
args = append(args, "--show-palette")
|
|
}
|
|
|
|
out, err := zenutil.Run(opts.ctx, args)
|
|
str, err := strResult(opts, out, err)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return zenutil.ParseColor(str), nil
|
|
}
|