zenity/color_unix.go
2024-09-06 11:16:18 -04:00

29 lines
568 B
Go

//go:build !windows && !darwin
package zenity
import (
"image/color"
"git.bigun.dev/evan/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
}