Added Cyg-Win
This commit is contained in:
parent
82cbc206eb
commit
413c315806
10586 changed files with 3806249 additions and 0 deletions
79
Agent-Windows/OGP64/usr/share/screen/colortest.sh
Normal file
79
Agent-Windows/OGP64/usr/share/screen/colortest.sh
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Adapted from:
|
||||
# - 256color2.pl by Todd Larason <jtl@molehill.org>
|
||||
# - https://github.com/termstandard/colors
|
||||
# By Andrew Schulman <andrex.e.schulman@gmail.com>
|
||||
|
||||
# System colors (range 0-15)
|
||||
|
||||
echo System colors:
|
||||
for ((color = 0; color < 8; ++color)) ; do
|
||||
printf "\033[48;5;${color}m "
|
||||
done
|
||||
printf "\033[0m\n"
|
||||
for ((color = 8; $color < 16; color++)) ; do
|
||||
printf "\033[48;5;${color}m "
|
||||
done
|
||||
printf "\033[0m\n\n"
|
||||
|
||||
# Color cube (range 16-231)
|
||||
|
||||
echo Color cube, 6x6x6:
|
||||
for ((g = 0; g < 6; ++g)) ; do
|
||||
for ((r = 0; r < 6; ++r)) ; do
|
||||
for ((b = 0; b < 6; ++b)) ; do
|
||||
color=$(( 16 + 36*r + 6*g + b ))
|
||||
printf "\033[48;5;${color}m "
|
||||
done
|
||||
printf "\033[0m "
|
||||
done
|
||||
echo
|
||||
done
|
||||
echo
|
||||
|
||||
# Grayscale ramp (range 232-255)
|
||||
|
||||
echo Grayscale ramp:
|
||||
for ((color = 232; color < 256; ++color)) ; do
|
||||
printf "\033[48;5;${color}m "
|
||||
done
|
||||
printf "\033[0m\n\n"
|
||||
|
||||
# Truecolor ramp
|
||||
|
||||
for n in $(tput cols) $COLUMNS 80 ; do
|
||||
ncols=$n
|
||||
break
|
||||
done
|
||||
|
||||
echo Truecolor ramp:
|
||||
for ((col = 0; col < ncols; ++col)) ; do
|
||||
r=$(( 255 - ( 255 * col / ncols ) ))
|
||||
g=$(( 510 * col / ncols )) ; if (( g > 255 )) ; then g=$(( 510 - g )) ; fi
|
||||
b=$(( 255 * col / ncols ))
|
||||
printf "\033[48;2;%d;%d;%dm" $r $g $b
|
||||
printf "\033[38;2;%d;%d;%dm" $(( 255 - r )) $(( 255 - g )) $(( 255 - b ))
|
||||
printf -- "-\033[0m"
|
||||
done
|
||||
echo
|
||||
|
||||
# Interpretation
|
||||
|
||||
ncols=$(printf "%-3d" $ncols)
|
||||
cat <<END
|
||||
|
||||
If your terminal supports
|
||||
this many colors: 8 16 256 24-bit
|
||||
|
||||
Then you'll see about this many
|
||||
distinct shades of color above:
|
||||
|
||||
System colors .................. 8 16 8-16 16
|
||||
Color cube (each square) ....... 3 10 36 36
|
||||
Greyscale ramp (incl. black) ... 1 4 25 25
|
||||
Truecolor ramp ................. 1 1 1 ${ncols}
|
||||
|
||||
See /usr/share/doc/screen/README.Cygwin for information about terminal color
|
||||
support in Cygwin.
|
||||
END
|
||||
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/01
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/01
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/02
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/02
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/03
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/03
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/04
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/04
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/18
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/18
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/19
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/19
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/a1
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/a1
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/a3
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/a3
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/bf
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/bf
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c2
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c2
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c3
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c3
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c4
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c4
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c6
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c6
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c7
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c7
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c8
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/c8
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/cc
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/cc
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/cd
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/cd
Normal file
Binary file not shown.
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/d6
Normal file
BIN
Agent-Windows/OGP64/usr/share/screen/utf8encodings/d6
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue