open -a 'DigitalColor Meter'
function bgcol() {
declare BGCOLOR="$1"
/usr/bin/osascript <<__END__
tell application "Terminal"
activate
with timeout of 10 seconds
do script
tell (first window whose name contains " ")
set background color to "${BGCOLOR}"
end tell
end timeout
end tell
__END__
return 0
}
bgcol grey
bgcol blue
bgcol white
bgcol red
bgcol orange
bgcol green
bgcol black
bgcol brown
bgcol cyan
bgcol purple
bgcol magenta
function bgcol2() {
declare BGCOLOR="$1"
/usr/bin/osascript <<__END__
set RGBbg to ${BGCOLOR} as RGB color
tell application "Terminal"
activate
with timeout of 10 seconds
do script
tell (first window whose name contains " ")
set background color to RGBbg
end tell
end timeout
end tell
__END__
return 0
}
bgcol2 '{57212, 56949, 40762}'
bgcol2 '{60000, 50000, 40000}'
bgcol2 '{60000, 40000, 40000}'
bgcol2 '{30810, 26728, 12934}'
bgcol2 '{24829, 27580, 33169}'
bgcol2 '{2570, 33924, 46774}'
bgcol2 '{50719, 61018, 52220}'
bgcol2 '{65123, 45636, 24237}'
function bgcol3() {
declare nums=$(ruby -e 'ar=[]; 3.times { ar << Kernel.rand(65535) }; puts ar.join(" ")')
declare r=$(printf "%s" "$nums" | awk '{print $1}')
declare g=$(printf "%s" "$nums" | awk '{print $2}')
declare b=$(printf "%s" "$nums" | awk '{print $3}')
printf "bgcol: ${r}, ${g}, ${b}\n"
/usr/bin/osascript <<__END__
set RGBbg to {${r}, ${g}, ${b}} as RGB color
tell application "Terminal"
activate
with timeout of 10 seconds
do script
tell (first window whose name contains " ")
set background color to RGBbg
end tell
end timeout
end tell
__END__
return 0
}
for (( i=0; i<=20; i++ )); do bgcol3; sleep 3; done
function fgcol() {
declare FGCOLOR="$1"
/usr/bin/osascript <<__END__
tell application "Terminal"
activate
with timeout of 10 seconds
do script
tell (first window whose name contains " ")
set normal text color to "${FGCOLOR}"
end tell
end timeout
end tell
__END__
return 0
}
fgcol grey
fgcol blue
fgcol white
fgcol red
fgcol orange
fgcol green
fgcol black
fgcol brown
fgcol cyan
fgcol purple
fgcol magenta
function defaultcolors() {
fgcol black
bgcol white
return 0
}
defaultcolors
function fgcol2() {
declare nums=$(ruby -e 'ar=[]; 3.times { ar << Kernel.rand(65535) }; puts ar.join(" ")')
declare r=$(printf "%s" "$nums" | awk '{print $1}')
declare g=$(printf "%s" "$nums" | awk '{print $2}')
declare b=$(printf "%s" "$nums" | awk '{print $3}')
printf "fgcol: ${r}, ${g}, ${b}\n"
/usr/bin/osascript <<__END__
set RGBfg to {${r}, ${g}, ${b}} as RGB color
tell application "Terminal"
activate
with timeout of 10 seconds
do script
tell (first window whose name contains " ")
set normal text color to RGBfg
--set bold text color to RGBfg
end tell
end timeout
end tell
__END__
return 0
}
for (( i=0; i<=20; i++ )); do fgcol2; sleep 3; done
for (( i=0; i<=20; i++ )); do fgcol2; sleep 3; bgcol3; sleep 5; printf "\n"; done