zenity/internal/zenutil/osascripts/color.applescript

9 lines
336 B
AppleScript
Raw Normal View History

2020-01-21 07:03:58 -05:00
tell application (path to frontmost application as text)
activate
{{if .Color -}}
set c to choose color default color { {{index .Color 0}}, {{index .Color 1}}, {{index .Color 2}} }
{{else -}}
set c to choose color
{{end}}
"rgb(" & (item 1 of c) div 257 & "," & (item 2 of c) div 257 & "," & (item 3 of c) div 257 & ")"
end tell