Deleted Added
sdiff udiff text old ( 61304 ) new ( 61306 )
full compact
1.\"
2.\" $FreeBSD: head/share/man/man4/screen.4 61304 2000-06-05 23:24:37Z ache $
3.\"
4.Dd January 8, 1995
5.Dt SCREEN 4
6.Os FreeBSD
7.Sh NAME
8.Nm screen
9.Nd pc display interface
10.Sh DESCRIPTION

--- 115 unchanged lines hidden (view full) ---

126 n= 5 blink (if supported by HW)
127 n= 7 reverse
128 n=3X set foreground color (see table)
129 n=4X set background color (see table)
130
131 X=0 black X=1 red
132 X=2 green X=3 brown
133 X=4 blue X=5 magenta
134 X=6 cyan X=7 white
135 X=9 reset to initial ANSI value
136
137-- E[s Save cursor position sc
138
139-- E[u Restore saved cursor position rc
140
141-- E[x Reset initial colors and attributes --
142 to their default values
143
144-- E[1;nx Set initial ANSI background to n --
145 (see table below)
146
147-- E[2;nx Set initial ANSI foreground to n --
148 (see table below)
149
150-- E[3;nx Set initial ANSI attribute directly --
151 to n (n from 0 to 255)
152
153-- E[5;nx Set initial ANSI reverse background --
154 to n (see table below)
155
156-- E[6;nx Set initial ANSI reverse foreground --
157 to n (see table below)
158
159-- E[7;nx Set initial ANSI reverse attribute --
160 directly to n (n from 0 to 255)
161
162-- E[=p;dB Set bell pitch (p) and duration (d), --
163 picth is in units of 840 nS,
164 duration is units of 0,1 S.
165
166-- E[=tC Set cursor type, 1 selects a blinking --
167 cursor, 0 a steady cursor.
168
169-- E[=nA Set the border color to color n
170 (see table) (if supported by HW)
171
172-- E[=nF set normal foreground color to n --
173 (see table)
174
175-- E[=nG set normal background color to n --
176 (see table)
177
178-- E[=nH set reverse foreground color to n --
179 (see table)
180
181-- E[=nI set reverse background color to n --
182 (see table)
183
184 n= 0 black n= 8 grey
185 n= 1 blue n= 9 light blue
186 n= 2 green n=10 light green
187 n= 3 cyan n=11 light cyan
188 n= 4 red n=12 light red
189 n= 5 magenta n=13 light magenta
190 n= 6 brown n=14 yellow
191 n= 7 white n=15 light white
192
193note: the first E in the sequences stands for ESC (0x1b)
194
195.Ed
196.Pp
197.Sh AUTHORS
198.An S�ren Schmidt Aq sos@FreeBSD.org