ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/doc/rxvt.1.html
Revision: 1.71
Committed: Mon Nov 19 12:02:35 2007 UTC (16 years, 7 months ago) by root
Content type: text/html
Branch: MAIN
CVS Tags: rel-8_5a
Changes since 1.70: +111 -101 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.67 <?xml version="1.0" encoding="UTF-8"?>
2     <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3     <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
4 root 1.1 <head>
5 root 1.67 <title>rxvt-unicode (ouR XVT, unicode)</title>
6     <meta name="description" content="Pod documentation for rxvt-unicode (ouR XVT, unicode)" />
7     <meta name="inputfile" content="&lt;standard input&gt;" />
8     <meta name="outputfile" content="&lt;standard output&gt;" />
9 root 1.71 <meta name="created" content="Mon Nov 19 13:01:50 2007" />
10 root 1.67 <meta name="generator" content="Pod::Xhtml 1.57" />
11     <link rel="stylesheet" href="http://res.tst.eu/pod.css"/></head>
12     <body>
13     <div class="pod">
14     <!-- INDEX START -->
15     <h3 id="TOP">Index</h3>
16    
17     <ul><li><a href="#NAME">NAME</a></li>
18     <li><a href="#SYNOPSIS">SYNOPSIS</a></li>
19     <li><a href="#DESCRIPTION">DESCRIPTION</a></li>
20     <li><a href="#FREQUENTLY_ASKED_QUESTIONS">FREQUENTLY ASKED QUESTIONS</a></li>
21     <li><a href="#RXVT_UNICODE_VS_RXVT">RXVT-UNICODE VS. RXVT</a></li>
22     <li><a href="#OPTIONS">OPTIONS</a></li>
23     <li><a href="#RESOURCES_available_also_as_long_opt">RESOURCES (available also as long-options)</a></li>
24     <li><a href="#THE_SCROLLBAR">THE SCROLLBAR</a></li>
25     <li><a href="#MOUSE_REPORTING">MOUSE REPORTING</a></li>
26     <li><a href="#THE_SELECTION_SELECTING_AND_PASTING_">THE SELECTION: SELECTING AND PASTING TEXT</a></li>
27     <li><a href="#CHANGING_FONTS">CHANGING FONTS</a></li>
28     <li><a href="#ISO_14755_SUPPORT">ISO 14755 SUPPORT</a></li>
29     <li><a href="#LOGIN_STAMP">LOGIN STAMP</a></li>
30     <li><a href="#COLORS_AND_GRAPHICS">COLORS AND GRAPHICS</a>
31     <ul><li><a href="#ALPHA_CHANNEL_SUPPORT">ALPHA CHANNEL SUPPORT</a></li>
32 root 1.1 </ul>
33 root 1.67 </li>
34     <li><a href="#ENVIRONMENT">ENVIRONMENT</a></li>
35     <li><a href="#FILES">FILES</a></li>
36     <li><a href="#SEE_ALSO">SEE ALSO</a></li>
37     <li><a href="#CURRENT_PROJECT_COORDINATOR">CURRENT PROJECT COORDINATOR</a></li>
38     <li><a href="#AUTHORS">AUTHORS</a>
39     </li>
40     </ul><hr />
41 root 1.1 <!-- INDEX END -->
42    
43 root 1.67 <h1 id="NAME">NAME</h1><p><a href="#TOP" class="toplink">Top</a></p>
44     <div id="NAME_CONTENT">
45 root 1.1 <p>rxvt-unicode (ouR XVT, unicode) - (a VT102 emulator for the X window system)</p>
46 root 1.67
47     </div>
48     <h1 id="SYNOPSIS">SYNOPSIS</h1><p><a href="#TOP" class="toplink">Top</a></p>
49     <div id="SYNOPSIS_CONTENT">
50 root 1.71 <p><strong>rxvt</strong> [options] [-e command [ args ]]</p>
51 root 1.67
52     </div>
53     <h1 id="DESCRIPTION">DESCRIPTION</h1><p><a href="#TOP" class="toplink">Top</a></p>
54     <div id="DESCRIPTION_CONTENT">
55 root 1.70 <p><strong>rxvt-unicode</strong>, version <strong>8.4</strong>, is a colour vt102 terminal
56 root 1.67 emulator intended as an <i>xterm</i>(1) replacement for users who do not
57 root 1.1 require features such as Tektronix 4014 emulation and toolkit-style
58     configurability. As a result, <strong>rxvt-unicode</strong> uses much less swap space --
59     a significant advantage on a machine serving many X sessions.</p>
60 root 1.67
61     </div>
62     <h1 id="FREQUENTLY_ASKED_QUESTIONS">FREQUENTLY ASKED QUESTIONS</h1><p><a href="#TOP" class="toplink">Top</a></p>
63     <div id="FREQUENTLY_ASKED_QUESTIONS_CONTENT">
64 root 1.71 <p>See rxvt(7) (try <code>man 7 rxvt</code>) for a list of
65 root 1.11 frequently asked questions and answer to them and some common
66     problems. That document is also accessible on the World-Wide-Web at
67 root 1.63 <a href="http://cvs.schmorp.de/browse/rxvt-unicode/doc/rxvt.7.html">http://cvs.schmorp.de/browse/rxvt-unicode/doc/rxvt.7.html</a>.</p>
68 root 1.67
69     </div>
70     <h1 id="RXVT_UNICODE_VS_RXVT">RXVT-UNICODE VS. RXVT</h1><p><a href="#TOP" class="toplink">Top</a></p>
71     <div id="RXVT_UNICODE_VS_RXVT_CONTENT">
72 root 1.1 <p>Unlike the original rxvt, <strong>rxvt-unicode</strong> stores all text in Unicode
73     internally. That means it can store and display most scripts in the
74     world. Being a terminal emulator, however, some things are very difficult,
75     especially cursive scripts such as arabic, vertically written scripts
76     like mongolian or scripts requiring extremely complex combining rules,
77 root 1.70 like tibetan or devanagari. Don't expect pretty output when using these
78 root 1.1 scripts. Most other scripts, latin, cyrillic, kanji, thai etc. should work
79 root 1.62 fine, though. A somewhat difficult case are right-to-left scripts, such
80 root 1.1 as hebrew: <strong>rxvt-unicode</strong> adopts the view that bidirectional algorithms
81     belong into the application, not the terminal emulator (too many things --
82     such as cursor-movement while editing -- break otherwise), but that might
83     change.</p>
84     <p>If you are looking for a terminal that supports more exotic scripts, let
85 root 1.62 me recommend <code>mlterm</code>, which is a very user friendly, lean and clean
86 root 1.1 terminal emulator. In fact, the reason rxvt-unicode was born was solely
87     because the author couldn't get <code>mlterm</code> to use one font for latin1 and
88     another for japanese.</p>
89     <p>Therefore another design rationale was the use of multiple fonts to
90     display characters: The idea of a single unicode font which many other
91 root 1.60 programs force onto its users never made sense to me: You should be able
92 root 1.1 to choose any font for any script freely.</p>
93     <p>Apart from that, rxvt-unicode is also much better internationalised than
94 root 1.60 its predecessor, supports things such as XFT and ISO 14755 that are handy
95 root 1.62 in i18n-environments, is faster, and has a lot bugs less than the original
96 root 1.1 rxvt. This all in addition to dozens of other small improvements.</p>
97     <p>It is still faithfully following the original rxvt idea of being lean
98     and nice on resources: for example, you can still configure rxvt-unicode
99 root 1.60 without most of its features to get a lean binary. It also comes with
100 root 1.1 a client/daemon pair that lets you open any number of terminal windows
101     from within a single process, which makes startup time very fast and
102 root 1.71 drastically reduces memory usage. See rxvtd(1) (daemon) and
103     rxvtc(1) (client).</p>
104 root 1.1 <p>It also makes technical information about escape sequences (which have
105 root 1.71 been extended) more accessible: see rxvt(7) for technical
106 root 1.1 reference documentation (escape sequences etc.).</p>
107 root 1.67
108     </div>
109     <h1 id="OPTIONS">OPTIONS</h1><p><a href="#TOP" class="toplink">Top</a></p>
110     <div id="OPTIONS_CONTENT">
111 root 1.71 <p>The <strong>rxvt</strong> options (mostly a subset of <i>xterm</i>'s) are listed
112 root 1.1 below. In keeping with the smaller-is-better philosophy, options may be
113     eliminated or default values chosen at compile-time, so options and
114     defaults listed may not accurately reflect the version installed on
115 root 1.71 your system. `rxvt -h' gives a list of major compile-time options on
116 root 1.67 the <i>Options</i> line. Option descriptions may be prefixed with which
117     compile option each is dependent upon. e.g. `Compile <i>XIM</i>:' requires
118 root 1.71 <i>XIM</i> on the <i>Options</i> line. Note: `rxvt -help' gives a list of all
119 root 1.1 command-line options compiled into your version.</p>
120 root 1.71 <p>Note that <strong>rxvt</strong> permits the resource name to be used as a
121 root 1.1 long-option (--/++ option) so the potential command-line options are
122 root 1.71 far greater than those listed. For example: `rxvt --loginShell --color1
123 root 1.1 Orange'.</p>
124     <p>The following options are available:</p>
125     <dl>
126 root 1.67 <dt><strong>-help</strong>, <strong>--help</strong></dt>
127     <dd>
128     <p>Print out a message describing available options.</p>
129     </dd>
130     <dt><strong>-display</strong> <i>displayname</i></dt>
131     <dd>
132     <p>Attempt to open a window on the named X display (<strong>-d</strong> still
133 root 1.1 respected). In the absence of this option, the display specified by the
134 root 1.59 <strong>DISPLAY</strong> environment variable is used.</p>
135 root 1.67 </dd>
136     <dt><strong>-depth</strong> <i>bitdepth</i></dt>
137     <dd>
138     <p>Compile <i>xft</i>: Attempt to find a visual with the given bit depth;
139 root 1.59 resource <strong>depth</strong>.</p>
140 root 1.67 </dd>
141     <dt><strong>-geometry</strong> <i>geom</i></dt>
142     <dd>
143     <p>Window geometry (<strong>-g</strong> still respected); resource <strong>geometry</strong>.</p>
144     </dd>
145     <dt><strong>-rv</strong>|<strong>+rv</strong></dt>
146     <dd>
147     <p>Turn on/off simulated reverse video; resource <strong>reverseVideo</strong>.</p>
148     </dd>
149     <dt><strong>-j</strong>|<strong>+j</strong></dt>
150     <dd>
151     <p>Turn on/off jump scrolling (allow multiple lines per refresh); resource <strong>jumpScroll</strong>.</p>
152     </dd>
153     <dt><strong>-ss</strong>|<strong>+ss</strong></dt>
154     <dd>
155     <p>Turn on/off skip scrolling (allow multiple screens per refresh); resource <strong>skipScroll</strong>.</p>
156     </dd>
157 root 1.70 <dt><strong>-tr</strong>|<strong>+tr</strong></dt>
158 root 1.67 <dd>
159 root 1.70 <p>Turn on/off illusion of a transparent window background. Obsolete form of it is
160     <strong>-ip</strong> and it should not be used anymore; resource <strong>transparent</strong>.</p>
161 root 1.71 <p><i>Please note that old resource name of <strong>inheritPixmap</strong> is obsolete and should be
162     changed to <strong>transparent</strong>. Backwards compatibility support for <strong>inheritPixmap</strong> will
163 root 1.70 be phased out in future versions of rxvt!</i></p>
164 root 1.71 <p><i>Please address all transparency related issues to Sasha Vasko at
165     sasha@aftercode.net. Read the FAQ (man 7 rxvt)!</i></p>
166 root 1.67 </dd>
167     <dt><strong>-fade</strong> <i>number</i></dt>
168     <dd>
169     <p>Fade the text by the given percentage when focus is lost. Small values
170 root 1.24 fade a little only, 100 completely replaces all colours by the fade
171 root 1.59 colour; resource <strong>fading</strong>.</p>
172 root 1.67 </dd>
173     <dt><strong>-fadecolor</strong> <i>colour</i></dt>
174     <dd>
175     <p>Fade to this colour when fading is used (see <strong>-fade</strong>). The default colour
176 root 1.59 is opaque black. resource <strong>fadeColor</strong>.</p>
177 root 1.67 </dd>
178     <dt><strong>-tint</strong> <i>colour</i></dt>
179     <dd>
180     <p>Tint the transparent background pixmap with the given colour when
181 root 1.70 transparency is enabled with <strong>-tr</strong>. This only works for
182 root 1.24 non-tiled backgrounds, currently. See also the <strong>-sh</strong> option that can be
183 root 1.69 used to brighten or darken the image in addition to tinting it.
184     Please note that certain tint colours can be applied on the server-side,
185     thus yielding performance gain of two orders of magnitude. These colours are:
186 root 1.71 blue, red, green, cyan, magenta, yellow, and those close to them. Also
187     pure black and pure white colors essentially mean no tinting; resource
188 root 1.67 <i>tintColor</i>. Example:</p>
189 root 1.71 <pre> rxvt -tr -tint blue -sh 40
190 root 1.59
191 root 1.67 </pre>
192     </dd>
193 root 1.69 <dt><strong>-sh</strong> <i>number</i></dt>
194 root 1.67 <dd>
195 root 1.71 <p>Darken (0 .. 100) or lighten (100 .. 200) the transparent
196 root 1.69 background image in addition to (or instead of) tinting it;
197 root 1.67 resource <i>shading</i>.</p>
198     </dd>
199     <dt><strong>-blt</strong> <i>string</i></dt>
200     <dd>
201 root 1.69 <p>Specify background blending type. If background pixmap is specified
202     at the same time as transparency - such pixmap will be blended over
203 root 1.67 transparency image, using method specified. Supported values are :
204 root 1.69 <strong>add</strong>, <strong>alphablend</strong>, <strong>allanon</strong> - color values averaging, <strong>colorize</strong>,
205     <strong>darken</strong>, <strong>diff</strong>, <strong>dissipate</strong>, <strong>hue</strong>, <strong>lighten</strong>, <strong>overlay</strong>,
206     <strong>saturate</strong>, <strong>screen</strong>, <strong>sub</strong>, <strong>tint</strong>, <strong>value</strong>. The default is
207 root 1.70 alpha-blending. Compile <i>afterimage</i>; resource <i>blendType</i>.</p>
208 root 1.67 </dd>
209 root 1.69 <dt><strong>-blr</strong> <i>HxV</i></dt>
210 root 1.67 <dd>
211 root 1.69 <p>Apply Gaussian Blur with the specified radii to the transparent
212     background image. If single number is specified - both vertical and
213     horizontal radii are considered to be the same. Setting one of the
214     radii to 1 and another to a large number creates interesting effects
215 root 1.70 on some backgrounds. Maximum radius value is 128. Compile <i>afterimage</i>;
216     resource <i>blurRadius</i>.</p>
217 root 1.67 </dd>
218     <dt><strong>-bg</strong> <i>colour</i></dt>
219     <dd>
220     <p>Window background colour; resource <strong>background</strong>.</p>
221     </dd>
222     <dt><strong>-fg</strong> <i>colour</i></dt>
223     <dd>
224     <p>Window foreground colour; resource <strong>foreground</strong>.</p>
225     </dd>
226 root 1.71 <dt><strong>-pixmap</strong> <i>file[;geom[:op1][:op2][...]]</i></dt>
227 root 1.67 <dd>
228 root 1.71 <p>Compile <i>afterimage</i>: Specify image file for the background and also
229 root 1.67 optionally specify its scaling with a geometry string. Note you may need to
230 root 1.3 add quotes to avoid special shell interpretation of the <code>;</code> in the
231 root 1.67 command-line; for more details see resource <strong>backgroundPixmap</strong>.</p>
232     </dd>
233     <dt><strong>-cr</strong> <i>colour</i></dt>
234     <dd>
235     <p>The cursor colour; resource <strong>cursorColor</strong>.</p>
236     </dd>
237     <dt><strong>-pr</strong> <i>colour</i></dt>
238     <dd>
239     <p>The mouse pointer foreground colour; resource <strong>pointerColor</strong>.</p>
240     </dd>
241     <dt><strong>-pr2</strong> <i>colour</i></dt>
242     <dd>
243     <p>The mouse pointer background colour; resource <strong>pointerColor2</strong>.</p>
244     </dd>
245     <dt><strong>-bd</strong> <i>colour</i></dt>
246     <dd>
247     <p>The colour of the border around the text area and between the scrollbar and the text;
248 root 1.59 resource <strong>borderColor</strong>.</p>
249 root 1.67 </dd>
250     <dt><strong>-fn</strong> <i>fontlist</i></dt>
251     <dd>
252     <p>Select the fonts to be used. This is a comma separated list of font names
253 root 1.45 that are checked in order when trying to find glyphs for characters. The
254 root 1.1 first font defines the cell size for characters; other fonts might be
255     smaller, but not (in general) larger. A (hopefully) reasonable default
256 root 1.59 font list is always appended to it. See resource <strong>font</strong> for more details.</p>
257 root 1.67 <p>In short, to specify an X11 core font, just specify its name or prefix it
258 root 1.1 with <code>x:</code>. To specify an XFT-font, you need to prefix it with <code>xft:</code>,
259     e.g.:</p>
260 root 1.71 <pre> rxvt -fn &quot;xft:Bitstream Vera Sans Mono:pixelsize=15&quot;
261     rxvt -fn &quot;9x15bold,xft:Bitstream Vera Sans Mono&quot;
262 root 1.67
263     </pre>
264     <p>See also the question &quot;How does rxvt-unicode choose fonts?&quot; in the FAQ
265 root 1.71 section of rxvt(7).</p>
266 root 1.67 </dd>
267     <dt><strong>-fb</strong> <i>fontlist</i></dt>
268     <dd>
269     <p>Compile <i>font-styles</i>: The bold font list to use when <strong>bold</strong> characters
270 root 1.59 are to be printed. See resource <strong>boldFont</strong> for details.</p>
271 root 1.67 </dd>
272     <dt><strong>-fi</strong> <i>fontlist</i></dt>
273     <dd>
274     <p>Compile <i>font-styles</i>: The italic font list to use when <i>italic</i>
275 root 1.59 characters are to be printed. See resource <strong>italicFont</strong> for details.</p>
276 root 1.67 </dd>
277     <dt><strong>-fbi</strong> <i>fontlist</i></dt>
278     <dd>
279     <p>Compile <i>font-styles</i>: The bold italic font list to use when <strong><i>bold
280     italic</i></strong> characters are to be printed. See resource <strong>boldItalicFont</strong>
281 root 1.59 for details.</p>
282 root 1.67 </dd>
283     <dt><strong>-is</strong>|<strong>+is</strong></dt>
284     <dd>
285     <p>Compile <i>font-styles</i>: Bold/Italic font styles imply high intensity
286 root 1.29 foreground/background (default). See resource <strong>intensityStyles</strong> for
287 root 1.59 details.</p>
288 root 1.67 </dd>
289     <dt><strong>-name</strong> <i>name</i></dt>
290     <dd>
291     <p>Specify the application name under which resources are to be obtained,
292 root 1.1 rather than the default executable file name. Name should not contain
293 root 1.59 `.' or `*' characters. Also sets the icon and title name.</p>
294 root 1.67 </dd>
295     <dt><strong>-ls</strong>|<strong>+ls</strong></dt>
296     <dd>
297     <p>Start as a login-shell/sub-shell; resource <strong>loginShell</strong>.</p>
298     </dd>
299     <dt><strong>-ut</strong>|<strong>+ut</strong></dt>
300     <dd>
301     <p>Compile <i>utmp</i>: Inhibit/enable writing a utmp entry; resource
302 root 1.59 <strong>utmpInhibit</strong>.</p>
303 root 1.67 </dd>
304     <dt><strong>-vb</strong>|<strong>+vb</strong></dt>
305     <dd>
306     <p>Turn on/off visual bell on receipt of a bell character; resource
307 root 1.59 <strong>visualBell</strong>.</p>
308 root 1.67 </dd>
309     <dt><strong>-sb</strong>|<strong>+sb</strong></dt>
310     <dd>
311     <p>Turn on/off scrollbar; resource <strong>scrollBar</strong>.</p>
312     </dd>
313     <dt><strong>-si</strong>|<strong>+si</strong></dt>
314     <dd>
315     <p>Turn on/off scroll-to-bottom on TTY output inhibit; resource
316 root 1.59 <strong>scrollTtyOutput</strong> has opposite effect.</p>
317 root 1.67 </dd>
318     <dt><strong>-sk</strong>|<strong>+sk</strong></dt>
319     <dd>
320     <p>Turn on/off scroll-to-bottom on keypress; resource
321 root 1.59 <strong>scrollTtyKeypress</strong>.</p>
322 root 1.67 </dd>
323     <dt><strong>-sw</strong>|<strong>+sw</strong></dt>
324     <dd>
325     <p>Turn on/off scrolling with the scrollback buffer as new lines appear.
326 root 1.1 This only takes effect if <strong>-si</strong> is also given; resource
327 root 1.59 <strong>scrollWithBuffer</strong>.</p>
328 root 1.67 </dd>
329     <dt><strong>-sr</strong>|<strong>+sr</strong></dt>
330     <dd>
331     <p>Put scrollbar on right/left; resource <strong>scrollBar_right</strong>.</p>
332     </dd>
333     <dt><strong>-st</strong>|<strong>+st</strong></dt>
334     <dd>
335     <p>Display rxvt (non XTerm/NeXT) scrollbar without/with a trough;
336 root 1.59 resource <strong>scrollBar_floating</strong>.</p>
337 root 1.67 </dd>
338     <dt><strong>-ptab</strong>|<strong>+ptab</strong></dt>
339     <dd>
340     <p>If enabled (default), &quot;Horizontal Tab&quot; characters are being stored as
341 root 1.1 actual wide characters in the screen buffer, which makes it possible to
342     select and paste them. Since a horizontal tab is a cursor movement and
343     not an actual glyph, this can sometimes be visually annoying as the cursor
344 root 1.59 on a tab character is displayed as a wide cursor; resource <strong>pastableTabs</strong>.</p>
345 root 1.67 </dd>
346     <dt><strong>-bc</strong>|<strong>+bc</strong></dt>
347     <dd>
348     <p>Blink the cursor; resource <strong>cursorBlink</strong>.</p>
349     </dd>
350     <dt><strong>-iconic</strong></dt>
351     <dd>
352     <p>Start iconified, if the window manager supports that option.
353 root 1.59 Alternative form is <strong>-ic</strong>.</p>
354 root 1.67 </dd>
355     <dt><strong>-sl</strong> <i>number</i></dt>
356     <dd>
357     <p>Save <i>number</i> lines in the scrollback buffer. See resource entry for
358 root 1.59 limits; resource <strong>saveLines</strong>.</p>
359 root 1.67 </dd>
360     <dt><strong>-b</strong> <i>number</i></dt>
361     <dd>
362     <p>Compile <i>frills</i>: Internal border of <i>number</i> pixels. See resource
363 root 1.59 entry for limits; resource <strong>internalBorder</strong>.</p>
364 root 1.67 </dd>
365     <dt><strong>-w</strong> <i>number</i></dt>
366     <dd>
367     <p>Compile <i>frills</i>: External border of <i>number</i> pixels. Also, <strong>-bw</strong>
368 root 1.1 and <strong>-borderwidth</strong>. See resource entry for limits; resource
369 root 1.59 <strong>externalBorder</strong>.</p>
370 root 1.67 </dd>
371     <dt><strong>-bl</strong></dt>
372     <dd>
373     <p>Compile <i>frills</i>: Set MWM hints to request a borderless window, i.e.
374 root 1.1 if honoured by the WM, the rxvt-unicode window will not have window
375 root 1.59 decorations; resource <strong>borderLess</strong>.</p>
376 root 1.67 </dd>
377     <dt><strong>-override-redirect</strong></dt>
378     <dd>
379     <p>Compile <i>frills</i>: Sets override-redirect on the window; resource
380 root 1.59 <strong>override-redirect</strong>.</p>
381 root 1.67 </dd>
382     <dt><strong>-sbg</strong></dt>
383     <dd>
384     <p>Compile <i>frills</i>: Disable the usage of the built-in block graphics/line
385 root 1.36 drawing characters and just rely on what the specified fonts provide. Use
386     this if you have a good font and want to use its block graphic glyphs;
387 root 1.59 resource <strong>skipBuiltinGlyphs</strong>.</p>
388 root 1.67 </dd>
389     <dt><strong>-lsp</strong> <i>number</i></dt>
390     <dd>
391     <p>Compile <i>frills</i>: Lines (pixel height) to insert between each row of
392 root 1.1 the display. Useful to work around font rendering problems; resource
393 root 1.70 <strong>lineSpace</strong>.</p>
394 root 1.67 </dd>
395     <dt><strong>-tn</strong> <i>termname</i></dt>
396     <dd>
397     <p>This option specifies the name of the terminal type to be set in the
398 root 1.1 <strong>TERM</strong> environment variable. This terminal type must exist in the
399 root 1.67 <i>termcap(5)</i> database and should have <i>li#</i> and <i>co#</i> entries;
400 root 1.59 resource <strong>termName</strong>.</p>
401 root 1.67 </dd>
402     <dt><strong>-e</strong> <i>command [arguments]</i></dt>
403     <dd>
404 root 1.71 <p>Run the command with its command-line arguments in the <strong>rxvt</strong>
405 root 1.1 window; also sets the window title and icon name to be the basename of
406 root 1.67 the program being executed if neither <i>-title</i> (<i>-T</i>) nor <i>-n</i> are
407 root 1.1 given on the command line. If this option is used, it must be the last
408     on the command-line. If there is no <strong>-e</strong> option then the default is to
409     run the program specified by the <strong>SHELL</strong> environment variable or,
410 root 1.67 failing that, <i>sh(1)</i>.</p>
411     <p>Please note that you must specify a program with arguments. If you want to
412 root 1.27 run shell commands, you have to specify the shell, like this:</p>
413 root 1.71 <pre> rxvt -e sh -c &quot;shell commands&quot;
414 root 1.59
415 root 1.67 </pre>
416     </dd>
417     <dt><strong>-title</strong> <i>text</i></dt>
418     <dd>
419     <p>Window title (<strong>-T</strong> still respected); the default title is the basename
420 root 1.1 of the program specified after the <strong>-e</strong> option, if any, otherwise the
421 root 1.59 application name; resource <strong>title</strong>.</p>
422 root 1.67 </dd>
423     <dt><strong>-n</strong> <i>text</i></dt>
424     <dd>
425     <p>Icon name; the default name is the basename of the program specified
426 root 1.1 after the <strong>-e</strong> option, if any, otherwise the application name;
427 root 1.59 resource <strong>iconName</strong>.</p>
428 root 1.67 </dd>
429     <dt><strong>-C</strong></dt>
430     <dd>
431     <p>Capture system console messages.</p>
432     </dd>
433     <dt><strong>-pt</strong> <i>style</i></dt>
434     <dd>
435     <p>Compile <i>XIM</i>: input style for input method; <strong>OverTheSpot</strong>,
436 root 1.59 <strong>OffTheSpot</strong>, <strong>Root</strong>; resource <strong>preeditType</strong>.</p>
437 root 1.67 </dd>
438     <dt><strong>-im</strong> <i>text</i></dt>
439     <dd>
440     <p>Compile <i>XIM</i>: input method name. resource <strong>inputMethod</strong>.</p>
441     </dd>
442     <dt><strong>-imlocale</strong> <i>string</i></dt>
443     <dd>
444     <p>The locale to use for opening the IM. You can use an <code>LC_CTYPE</code> of e.g.
445 root 1.6 <code>de_DE.UTF-8</code> for normal text processing but <code>ja_JP.EUC-JP</code> for the
446     input extension to be able to input japanese characters while staying in
447 root 1.59 another locale. resource <strong>imLocale</strong>.</p>
448 root 1.67 </dd>
449     <dt><strong>-imfont</strong> <i>fontset</i></dt>
450     <dd>
451     <p>Set the font set to use for the X Input Method, see resource <strong>imFont</strong>
452 root 1.59 for more info.</p>
453 root 1.67 </dd>
454     <dt><strong>-tcw</strong></dt>
455     <dd>
456     <p>Change the meaning of triple-click selection with the left mouse
457 root 1.66 button. Only effective when the original (non-perl) selection code is
458     in-use. Instead of selecting a full line it will extend the selection the
459 root 1.59 end of the logical line only. resource <strong>tripleclickwords</strong>.</p>
460 root 1.67 </dd>
461     <dt><strong>-insecure</strong></dt>
462     <dd>
463     <p>Enable &quot;insecure&quot; mode, which currently enables most of the escape
464 root 1.1 sequences that echo strings. See the resource <strong>insecure</strong> for more
465 root 1.59 info.</p>
466 root 1.67 </dd>
467     <dt><strong>-mod</strong> <i>modifier</i></dt>
468     <dd>
469     <p>Override detection of Meta modifier with specified key: <strong>alt</strong>,
470 root 1.1 <strong>meta</strong>, <strong>hyper</strong>, <strong>super</strong>, <strong>mod1</strong>, <strong>mod2</strong>, <strong>mod3</strong>, <strong>mod4</strong>,
471 root 1.67 <strong>mod5</strong>; resource <i>modifier</i>.</p>
472     </dd>
473     <dt><strong>-ssc</strong>|<strong>+ssc</strong></dt>
474     <dd>
475     <p>Turn on/off secondary screen (default enabled); resource
476 root 1.59 <strong>secondaryScreen</strong>.</p>
477 root 1.67 </dd>
478     <dt><strong>-ssr</strong>|<strong>+ssr</strong></dt>
479     <dd>
480     <p>Turn on/off secondary screen scroll (default enabled); resource
481 root 1.59 <strong>secondaryScroll</strong>.</p>
482 root 1.67 </dd>
483     <dt><strong>-hold</strong>|<strong>+hold</strong></dt>
484     <dd>
485 root 1.71 <p>Turn on/off hold window after exit support. If enabled, rxvt
486 root 1.27 will not immediately destroy its window when the program executed within
487     it exits. Instead, it will wait till it is being killed or closed by the
488 root 1.59 user; resource <strong>hold</strong>.</p>
489 root 1.67 </dd>
490     <dt><strong>-keysym.</strong><i>sym</i> <i>string</i></dt>
491     <dd>
492     <p>Remap a key symbol. See resource <strong>keysym</strong>.</p>
493     </dd>
494     <dt><strong>-embed</strong> <i>windowid</i></dt>
495     <dd>
496 root 1.71 <p>Tells rxvt to embed its windows into an already-existing window,
497 root 1.59 which enables applications to easily embed a terminal.</p>
498 root 1.71 <p>Right now, rxvt will first unmap/map the specified window, so it
499     shouldn't be a top-level window. rxvt will also reconfigure it
500 root 1.14 quite a bit, so don't expect it to keep some specific state. It's best to
501 root 1.71 create an extra subwindow for rxvt and leave it alone.</p>
502     <p>The window will not be destroyed when rxvt exits.</p>
503     <p>It might be useful to know that rxvt will not close file
504 root 1.14 descriptors passed to it (except for stdin/out/err, of course), so you
505     can use file descriptors to communicate with the programs within the
506 root 1.62 terminal. This works regardless of whether the <code>-embed</code> option was used or
507 root 1.14 not.</p>
508 root 1.67 <p>Here is a short Gtk2-perl snippet that illustrates how this option can be
509     used (a longer example is in <cite>doc/embed</cite>):</p>
510     <pre> my $rxvt = new Gtk2::Socket;
511 root 1.19 $rxvt-&gt;signal_connect_after (realize =&gt; sub {
512     my $xid = $_[0]-&gt;window-&gt;get_xid;
513 root 1.71 system &quot;rxvt -embed $xid &amp;&quot;;
514 root 1.67 });
515 root 1.59
516 root 1.67 </pre>
517     </dd>
518     <dt><strong>-pty-fd</strong> <i>file descriptor</i></dt>
519     <dd>
520 root 1.71 <p>Tells rxvt NOT to execute any commands or create a new pty/tty
521 root 1.62 pair but instead use the given file descriptor as the tty master. This is
522 root 1.71 useful if you want to drive rxvt as a generic terminal emulator
523 root 1.59 without having to run a program within it.</p>
524 root 1.71 <p>If this switch is given, rxvt will not create any utmp/wtmp
525 root 1.17 entries and will not tinker with pty/tty permissions - you have to do that
526     yourself if you want that.</p>
527 root 1.67 <p>As an extremely special case, specifying <code>-1</code> will completely suppress
528 root 1.37 pty/tty operations.</p>
529 root 1.67 <p>Here is a example in perl that illustrates how this option can be used (a
530     longer example is in <cite>doc/pty-fd</cite>):</p>
531     <pre> use IO::Pty;
532     use Fcntl;
533    
534 root 1.17 my $pty = new IO::Pty;
535 root 1.18 fcntl $pty, F_SETFD, 0; # clear close-on-exec
536 root 1.71 system &quot;rxvt -pty-fd &quot; . (fileno $pty) . &quot;&amp;&quot;;
537 root 1.67 close $pty;
538    
539 root 1.17 # now communicate with rxvt
540     my $slave = $pty-&gt;slave;
541 root 1.67 while (&lt;$slave&gt;) { print $slave &quot;got &lt;$_&gt;\n&quot; }
542 root 1.59
543 root 1.67 </pre>
544     </dd>
545     <dt><strong>-pe</strong> <i>string</i></dt>
546     <dd>
547     <p>Comma-separated list of perl extension scripts to use (or not to use) in
548 root 1.59 this terminal instance. See resource <strong>perl-ext</strong> for details.</p>
549 root 1.67 </dd>
550 root 1.59 </dl>
551 root 1.67
552     </div>
553     <h1 id="RESOURCES_available_also_as_long_opt">RESOURCES (available also as long-options)</h1><p><a href="#TOP" class="toplink">Top</a></p>
554     <div id="RESOURCES_available_also_as_long_opt-2">
555 root 1.71 <p>Note: `rxvt --help' gives a list of all resources (long
556 root 1.1 options) compiled into your version.</p>
557 root 1.42 <p>You can set and change the resources using X11 tools like <strong>xrdb</strong>. Many
558     distribution do also load settings from the <strong>~/.Xresources</strong> file when X
559 root 1.71 starts. rxvt will consult the following files/resources in order,
560 root 1.42 with later settings overwriting earlier ones:</p>
561 root 1.67 <pre> 1. system-wide app-defaults file, either locale-dependent OR global
562 root 1.11 2. app-defaults file in $XAPPLRESDIR
563     3. RESOURCE_MANAGER property on root-window OR $HOME/.Xdefaults
564     4. SCREEN_RESOURCES for the current screen
565 root 1.67 5. $XENVIRONMENT file OR $HOME/.Xdefaults-&lt;nodename&gt;
566    
567     </pre>
568 root 1.71 <p>Note that when reading X resources, <strong>rxvt</strong> recognizes two class
569 root 1.42 names: <strong>Rxvt</strong> and <strong>URxvt</strong>. The class name <strong>Rxvt</strong> allows resources
570 root 1.71 common to both <strong>rxvt</strong> and the original <i>rxvt</i> to be easily
571 root 1.42 configured, while the class name <strong>URxvt</strong> allows resources unique to
572 root 1.71 <strong>rxvt</strong>, to be shared between different <strong>rxvt</strong>
573 root 1.42 configurations. If no resources are specified, suitable defaults will
574     be used. Command-line arguments can be used to override resource
575     settings. The following resources are supported (you might want to
576 root 1.71 check the rxvtperl(3) manpage for additional settings by perl
577 root 1.42 extensions not documented here):</p>
578 root 1.1 <dl>
579 root 1.67 <dt><strong>depth:</strong> <i>bitdepth</i></dt>
580     <dd>
581     <p>Compile <i>xft</i>: Attempt to find a visual with the given bit depth;
582 root 1.59 option <strong>-depth</strong>.</p>
583 root 1.67 </dd>
584     <dt><strong>geometry:</strong> <i>geom</i></dt>
585     <dd>
586     <p>Create the window with the specified X window geometry [default 80x24];
587 root 1.59 option <strong>-geometry</strong>.</p>
588 root 1.67 </dd>
589     <dt><strong>background:</strong> <i>colour</i></dt>
590     <dd>
591     <p>Use the specified colour as the window's background colour [default
592 root 1.59 White]; option <strong>-bg</strong>.</p>
593 root 1.67 </dd>
594     <dt><strong>foreground:</strong> <i>colour</i></dt>
595     <dd>
596     <p>Use the specified colour as the window's foreground colour [default
597 root 1.59 Black]; option <strong>-fg</strong>.</p>
598 root 1.67 </dd>
599     <dt><strong>color</strong><i>n</i><strong>:</strong> <i>colour</i></dt>
600     <dd>
601     <p>Use the specified colour for the colour value <i>n</i>, where 0-7
602 root 1.1 corresponds to low-intensity (normal) colours and 8-15 corresponds to
603     high-intensity (bold = bright foreground, blink = bright background)
604     colours. The canonical names are as follows: 0=black, 1=red, 2=green,
605     3=yellow, 4=blue, 5=magenta, 6=cyan, 7=white, but the actual colour
606 root 1.59 names used are listed in the <strong>COLORS AND GRAPHICS</strong> section.</p>
607 root 1.67 <p>Colours higher than 15 cannot be set using resources (yet), but can be
608 root 1.71 changed using an escape command (see rxvt(7)).</p>
609 root 1.67 <p>Colours 16-79 form a standard 4x4x4 colour cube (the same as xterm with
610 root 1.1 88 colour support). Colours 80-87 are evenly spaces grey steps.</p>
611 root 1.67 </dd>
612     <dt><strong>colorBD:</strong> <i>colour</i></dt>
613     <dt><strong>colorIT:</strong> <i>colour</i></dt>
614     <dd>
615     <p>Use the specified colour to display bold or italic characters when the
616 root 1.1 foreground colour is the default. If font styles are not available
617 root 1.67 (Compile <i>styles</i>) and this option is unset, reverse video is used instead.</p>
618     </dd>
619     <dt><strong>colorUL:</strong> <i>colour</i></dt>
620     <dd>
621     <p>Use the specified colour to display underlined characters when the
622 root 1.59 foreground colour is the default.</p>
623 root 1.67 </dd>
624     <dt><strong>colorRV:</strong> <i>colour</i></dt>
625     <dd>
626     <p>Use the specified colour as the background for reverse video characters
627 root 1.65 when OPTION_HC is disabled (--disable-frills).</p>
628 root 1.67 </dd>
629     <dt><strong>underlineColor:</strong> <i>colour</i></dt>
630     <dd>
631     <p>If set, use the specified colour as the colour for the underline
632 root 1.59 itself. If unset, use the foreground colour.</p>
633 root 1.67 </dd>
634     <dt><strong>cursorColor:</strong> <i>colour</i></dt>
635     <dd>
636     <p>Use the specified colour for the cursor. The default is to use the
637 root 1.59 foreground colour; option <strong>-cr</strong>.</p>
638 root 1.67 </dd>
639     <dt><strong>cursorColor2:</strong> <i>colour</i></dt>
640     <dd>
641     <p>Use the specified colour for the colour of the cursor text. For this to
642 root 1.1 take effect, <strong>cursorColor</strong> must also be specified. The default is to
643 root 1.59 use the background colour.</p>
644 root 1.67 </dd>
645     <dt><strong>reverseVideo:</strong> <i>boolean</i></dt>
646     <dd>
647     <p><strong>True</strong>: simulate reverse video by foreground and background colours;
648 root 1.1 option <strong>-rv</strong>. <strong>False</strong>: regular screen colours [default]; option
649 root 1.59 <strong>+rv</strong>. See note in <strong>COLORS AND GRAPHICS</strong> section.</p>
650 root 1.67 </dd>
651     <dt><strong>jumpScroll:</strong> <i>boolean</i></dt>
652     <dd>
653     <p><strong>True</strong>: specify that jump scrolling should be used. When receiving lots
654 root 1.71 of lines, rxvt will only scroll once a whole screen height of lines
655 root 1.67 has been read, resulting in fewer updates while still displaying every
656     received line; option <strong>-j</strong>.</p>
657 root 1.71 <p><strong>False</strong>: specify that smooth scrolling should be used. rxvt will
658 root 1.67 force a screen refresh on each new line it received; option <strong>+j</strong>.</p>
659     </dd>
660     <dt><strong>skipScroll:</strong> <i>boolean</i></dt>
661     <dd>
662     <p><strong>True</strong>: (the default) specify that skip scrolling should be used. When
663 root 1.71 receiving lots of lines, rxvt will only scroll once in a while
664 root 1.67 (around 60 times per second), resulting in far fewer updates. This can
665 root 1.71 result in rxvt not ever displaying some of the lines it receives;
666 root 1.67 option <strong>-ss</strong>.</p>
667     <p><strong>False</strong>: specify that everything is to be displayed, even
668     if the refresh is too fast for the human eye to read anything (or the
669     monitor to display anything); option <strong>+ss</strong>.</p>
670     </dd>
671     <dt><strong>inheritPixmap:</strong> <i>boolean</i></dt>
672     <dd>
673     <p><strong>True</strong>: make the background inherit the parent windows' pixmap, giving
674 root 1.1 artificial transparency. <strong>False</strong>: do not inherit the parent windows'
675 root 1.59 pixmap.</p>
676 root 1.67 <p><i>Please note that transparency of any kind if completely unsupported by
677     the author. Don't bug him with installation questions!</i></p>
678     </dd>
679     <dt><strong>fading:</strong> <i>number</i></dt>
680     <dd>
681     <p>Fade the text by the given percentage when focus is lost; option <strong>-fade</strong>.</p>
682     </dd>
683     <dt><strong>fadeColor:</strong> <i>colour</i></dt>
684     <dd>
685     <p>Fade to this colour, when fading is used (see <strong>fading:</strong>). The default
686 root 1.59 colour is black; option <strong>-fadecolor</strong>.</p>
687 root 1.67 </dd>
688     <dt><strong>tintColor:</strong> <i>colour</i></dt>
689     <dd>
690     <p>Tint the transparent background pixmap with the given colour; option
691 root 1.59 <strong>-tint</strong>.</p>
692 root 1.67 </dd>
693     <dt><strong>shading:</strong> <i>number</i></dt>
694     <dd>
695     <p>Darken (0 .. 100) or lighten (-1 .. -100) the transparent background image
696 root 1.65 in addition to tinting it; option <strong>-sh</strong>.</p>
697 root 1.67 </dd>
698     <dt><strong>blendType:</strong> <i>string</i></dt>
699     <dd>
700     <p>Specify background blending type; option <strong>-blt</strong>.</p>
701     </dd>
702     <dt><strong>blurRadius:</strong> <i>number</i></dt>
703     <dd>
704 root 1.71 <p>Apply Gaussian Blurr with the specified radius to the transparent
705 root 1.67 background image; option <strong>-blr</strong>.</p>
706     </dd>
707     <dt><strong>scrollColor:</strong> <i>colour</i></dt>
708     <dd>
709     <p>Use the specified colour for the scrollbar [default #B2B2B2].</p>
710     </dd>
711     <dt><strong>troughColor:</strong> <i>colour</i></dt>
712     <dd>
713     <p>Use the specified colour for the scrollbar's trough area [default
714 root 1.59 #969696]. Only relevant for rxvt (non XTerm/NeXT) scrollbar.</p>
715 root 1.67 </dd>
716     <dt><strong>borderColor:</strong> <i>colour</i></dt>
717     <dd>
718     <p>The colour of the border around the text area and between the scrollbar
719 root 1.59 and the text.</p>
720 root 1.67 </dd>
721 root 1.71 <dt><strong>backgroundPixmap:</strong> <i>file[;geom[:op1][:op2][...]]</i></dt>
722 root 1.67 <dd>
723 root 1.71 <p>Use the specified image file for the background and also
724     optionally specify its scaling with a geometry string <strong>WxH+X+Y</strong>,
725     (default <code>0x0+50+50</code>) in which <strong>&quot;W&quot; / &quot;H&quot;</strong> specify the
726     horizontal/vertical scale (percent), and <strong>&quot;X&quot; / &quot;Y&quot;</strong> locate the image
727     centre (percent). A scale of 0 displays the image with tiling. A scale
728     of 1 displays the image without any scaling. A scale of 2 to 9 specifies
729     an integer number of images in that direction. No image will be magnified
730     beyond 10 times its original size. The maximum permitted scale is 1000.
731     Additional operations can be specified after colon <strong>:op1:op2...</strong>.
732     Supported operations are:</p>
733     <pre> tile force background image to be tiled and not scaled. Equivalent to 0x0,
734     propscale will scale image keeping proportions,
735     auto will scale image to match window size. Equivalent to 100x100;
736     hscale will scale image horizontally to the window size;
737     vscale will scale image vertically to the window size;
738     scale will scale image to match window size;
739     root will tile image as if it was a root window background, auto-adjusting
740     whenever terminal window moves.
741    
742     </pre>
743     <p>If used in conjunction with <strong>-tr</strong> option, the specified pixmap will be
744     blended over transparency image using either alpha-blending, or any
745     other blending type, specified with <strong>-blt &quot;type&quot;</strong> option.</p>
746 root 1.67 </dd>
747     <dt><strong>path:</strong> <i>path</i></dt>
748     <dd>
749 root 1.70 <p>Specify the colon-delimited search path for finding background image files.</p>
750 root 1.67 </dd>
751     <dt><strong>font:</strong> <i>fontlist</i></dt>
752     <dd>
753     <p>Select the fonts to be used. This is a comma separated list of font names
754 root 1.45 that are checked in order when trying to find glyphs for characters. The
755     first font defines the cell size for characters; other fonts might be
756     smaller, but not (in general) larger. A (hopefully) reasonable default
757 root 1.59 font list is always appended to it; option <strong>-fn</strong>.</p>
758 root 1.67 <p>Each font can either be a standard X11 core font (XLFD) name, with
759     optional prefix <code>x:</code> or a Xft font (Compile <i>xft</i>), prefixed with <code>xft:</code>.</p>
760     <p>In addition, each font can be prefixed with additional hints and
761 root 1.1 specifications enclosed in square brackets (<code>[]</code>). The only available
762     hint currently is <code>codeset=codeset-name</code>, and this is only used for Xft
763     fonts.</p>
764 root 1.67 <p>For example, this font resource</p>
765     <pre> URxvt.font: 9x15bold,\
766 root 1.1 -misc-fixed-bold-r-normal--15-140-75-75-c-90-iso10646-1,\
767     -misc-fixed-medium-r-normal--15-140-75-75-c-90-iso10646-1, \
768     [codeset=JISX0208]xft:Kochi Gothic:antialias=false, \
769 root 1.67 xft:Code2000:antialias=false
770    
771     </pre>
772     <p>specifies five fonts to be used. The first one is <code>9x15bold</code> (actually
773 root 1.1 the iso8859-1 version of the second font), which is the base font (because
774     it is named first) and thus defines the character cell grid to be 9 pixels
775     wide and 15 pixels high.</p>
776 root 1.67 <p>The second font is just used to add additional unicode characters not in
777 root 1.1 the base font, likewise the third, which is unfortunately non-bold, but
778     the bold version of the font does contain less characters, so this is a
779     useful supplement.</p>
780 root 1.67 <p>The third font is an Xft font with aliasing turned off, and the characters
781 root 1.1 are limited to the <strong>JIS 0208</strong> codeset (i.e. japanese kanji). The font
782     contains other characters, but we are not interested in them.</p>
783 root 1.67 <p>The last font is a useful catch-all font that supplies most of the
784 root 1.1 remaining unicode characters.</p>
785 root 1.67 </dd>
786     <dt><strong>boldFont:</strong> <i>fontlist</i></dt>
787     <dt><strong>italicFont:</strong> <i>fontlist</i></dt>
788     <dt><strong>boldItalicFont:</strong> <i>fontlist</i></dt>
789     <dd>
790     <p>The font list to use for displaying <strong>bold</strong>, <i>italic</i> or <strong><i>bold
791     italic</i></strong> characters, respectively.</p>
792     <p>If specified and non-empty, then the syntax is the same as for the
793 root 1.1 <strong>font</strong>-resource, and the given font list will be used as is, which makes
794     it possible to substitute completely different font styles for bold and
795     italic.</p>
796 root 1.67 <p>If unset (the default), a suitable font list will be synthesized by
797     &quot;morphing&quot; the normal text font list into the desired shape. If that is
798 root 1.1 not possible, replacement fonts of the desired shape will be tried.</p>
799 root 1.67 <p>If set, but empty, then this specific style is disabled and the normal
800 root 1.1 text font will being used for the given style.</p>
801 root 1.67 </dd>
802     <dt><strong>intensityStyles:</strong> <i>boolean</i></dt>
803     <dd>
804     <p>When font styles are not enabled, or this option is enabled (<strong>True</strong>,
805 root 1.29 option <strong>-is</strong>, the default), bold and italic font styles imply high
806 root 1.62 intensity foreground/background colours. Disabling this option (<strong>False</strong>,
807 root 1.29 option <strong>+is</strong>) disables this behaviour, the high intensity colours are not
808 root 1.59 reachable.</p>
809 root 1.67 </dd>
810     <dt><strong>selectstyle:</strong> <i>mode</i></dt>
811     <dd>
812     <p>Set mouse selection style to <strong>old</strong> which is 2.20, <strong>oldword</strong> which
813 root 1.66 is xterm style with 2.20 old word selection, or anything else which
814     gives xterm style selection. Only effective when the original (non-perl)
815     selection code is in use.</p>
816 root 1.67 </dd>
817     <dt><strong>scrollstyle:</strong> <i>mode</i></dt>
818     <dd>
819     <p>Set scrollbar style to <strong>rxvt</strong>, <strong>plain</strong>, <strong>next</strong> or <strong>xterm</strong>. <strong>plain</strong> is
820 root 1.59 the author's favourite.</p>
821 root 1.67 </dd>
822     <dt><strong>title:</strong> <i>string</i></dt>
823     <dd>
824     <p>Set window title string, the default title is the command-line
825 root 1.1 specified after the <strong>-e</strong> option, if any, otherwise the application
826 root 1.59 name; option <strong>-title</strong>.</p>
827 root 1.67 </dd>
828     <dt><strong>iconName:</strong> <i>string</i></dt>
829     <dd>
830     <p>Set the name used to label the window's icon or displayed in an icon
831 root 1.1 manager window, it also sets the window's title unless it is explicitly
832 root 1.59 set; option <strong>-n</strong>.</p>
833 root 1.67 </dd>
834     <dt><strong>mapAlert:</strong> <i>boolean</i></dt>
835     <dd>
836     <p><strong>True</strong>: de-iconify (map) on receipt of a bell character. <strong>False</strong>: no
837 root 1.59 de-iconify (map) on receipt of a bell character [default].</p>
838 root 1.67 </dd>
839     <dt><strong>urgentOnBell:</strong> <i>boolean</i></dt>
840     <dd>
841     <p><strong>True</strong>: set the urgency hint for the wm on receipt of a bell character.
842 root 1.66 <strong>False</strong>: do not set the urgency hint [default].</p>
843 root 1.67 </dd>
844     <dt><strong>visualBell:</strong> <i>boolean</i></dt>
845     <dd>
846     <p><strong>True</strong>: use visual bell on receipt of a bell character; option <strong>-vb</strong>.
847 root 1.59 <strong>False</strong>: no visual bell [default]; option <strong>+vb</strong>.</p>
848 root 1.67 </dd>
849     <dt><strong>loginShell:</strong> <i>boolean</i></dt>
850     <dd>
851     <p><strong>True</strong>: start as a login shell by prepending a `-' to <strong>argv[0]</strong> of
852 root 1.1 the shell; option <strong>-ls</strong>. <strong>False</strong>: start as a normal sub-shell
853 root 1.59 [default]; option <strong>+ls</strong>.</p>
854 root 1.67 </dd>
855     <dt><strong>utmpInhibit:</strong> <i>boolean</i></dt>
856     <dd>
857     <p><strong>True</strong>: inhibit writing record into the system log file <strong>utmp</strong>;
858 root 1.1 option <strong>-ut</strong>. <strong>False</strong>: write record into the system log file <strong>utmp</strong>
859 root 1.59 [default]; option <strong>+ut</strong>.</p>
860 root 1.67 </dd>
861     <dt><strong>print-pipe:</strong> <i>string</i></dt>
862     <dd>
863     <p>Specify a command pipe for vt100 printer [default <i>lpr(1)</i>]. Use
864 root 1.1 <strong>Print</strong> to initiate a screen dump to the printer and <strong>Ctrl-Print</strong> or
865 root 1.59 <strong>Shift-Print</strong> to include the scrollback as well.</p>
866 root 1.67 <p>The string will be interpreted as if typed into the shell as-is.</p>
867     <p>Example:</p>
868     <pre> URxvt.print-pipe: cat &gt; $(TMPDIR=$HOME mktemp urxvt.XXXXXX)
869    
870     </pre>
871     <p>This creates a new file in your home directory with the screen contents
872 root 1.62 every time you hit <code>Print</code>.</p>
873 root 1.67 </dd>
874     <dt><strong>scrollBar:</strong> <i>boolean</i></dt>
875     <dd>
876     <p><strong>True</strong>: enable the scrollbar [default]; option <strong>-sb</strong>. <strong>False</strong>:
877 root 1.59 disable the scrollbar; option <strong>+sb</strong>.</p>
878 root 1.67 </dd>
879     <dt><strong>scrollBar_right:</strong> <i>boolean</i></dt>
880     <dd>
881     <p><strong>True</strong>: place the scrollbar on the right of the window; option <strong>-sr</strong>.
882 root 1.59 <strong>False</strong>: place the scrollbar on the left of the window; option <strong>+sr</strong>.</p>
883 root 1.67 </dd>
884     <dt><strong>scrollBar_floating:</strong> <i>boolean</i></dt>
885     <dd>
886     <p><strong>True</strong>: display an rxvt scrollbar without a trough; option <strong>-st</strong>.
887 root 1.59 <strong>False</strong>: display an rxvt scrollbar with a trough; option <strong>+st</strong>.</p>
888 root 1.67 </dd>
889     <dt><strong>scrollBar_align:</strong> <i>mode</i></dt>
890     <dd>
891     <p>Align the <strong>top</strong>, <strong>bottom</strong> or <strong>centre</strong> [default] of the scrollbar
892 root 1.59 thumb with the pointer on middle button press/drag.</p>
893 root 1.67 </dd>
894     <dt><strong>scrollTtyOutput:</strong> <i>boolean</i></dt>
895     <dd>
896     <p><strong>True</strong>: scroll to bottom when tty receives output; option <strong>-si</strong>.
897 root 1.1 <strong>False</strong>: do not scroll to bottom when tty receives output; option
898 root 1.59 <strong>+si</strong>.</p>
899 root 1.67 </dd>
900     <dt><strong>scrollWithBuffer:</strong> <i>boolean</i></dt>
901     <dd>
902     <p><strong>True</strong>: scroll with scrollback buffer when tty receives new lines (and
903 root 1.16 <strong>scrollTtyOutput</strong> is False); option <strong>-sw</strong>. <strong>False</strong>: do not scroll
904 root 1.62 with scrollback buffer when tty receives new lines; option <strong>+sw</strong>.</p>
905 root 1.67 </dd>
906     <dt><strong>scrollTtyKeypress:</strong> <i>boolean</i></dt>
907     <dd>
908     <p><strong>True</strong>: scroll to bottom when a non-special key is pressed. Special keys
909 root 1.1 are those which are intercepted by rxvt-unicode for special handling and
910     are not passed onto the shell; option <strong>-sk</strong>. <strong>False</strong>: do not scroll to
911 root 1.59 bottom when a non-special key is pressed; option <strong>+sk</strong>.</p>
912 root 1.67 </dd>
913     <dt><strong>saveLines:</strong> <i>number</i></dt>
914     <dd>
915     <p>Save <i>number</i> lines in the scrollback buffer [default 64]. This
916 root 1.59 resource is limited on most machines to 65535; option <strong>-sl</strong>.</p>
917 root 1.67 </dd>
918     <dt><strong>internalBorder:</strong> <i>number</i></dt>
919     <dd>
920     <p>Internal border of <i>number</i> pixels. This resource is limited to 100;
921 root 1.59 option <strong>-b</strong>.</p>
922 root 1.67 </dd>
923     <dt><strong>externalBorder:</strong> <i>number</i></dt>
924     <dd>
925     <p>External border of <i>number</i> pixels. This resource is limited to 100;
926 root 1.59 option <strong>-w</strong>, <strong>-bw</strong>, <strong>-borderwidth</strong>.</p>
927 root 1.67 </dd>
928     <dt><strong>borderLess:</strong> <i>boolean</i></dt>
929     <dd>
930     <p>Set MWM hints to request a borderless window, i.e. if honoured by the
931 root 1.59 WM, the rxvt-unicode window will not have window decorations; option <strong>-bl</strong>.</p>
932 root 1.67 </dd>
933     <dt><strong>skipBuiltinGlyphs:</strong> <i>boolean</i></dt>
934     <dd>
935     <p>Compile <i>frills</i>: Disable the usage of the built-in block graphics/line
936 root 1.36 drawing characters and just rely on what the specified fonts provide. Use
937     this if you have a good font and want to use its block graphic glyphs;
938 root 1.59 option <strong>-sbg</strong>.</p>
939 root 1.67 </dd>
940     <dt><strong>termName:</strong> <i>termname</i></dt>
941     <dd>
942     <p>Specifies the terminal type name to be set in the <strong>TERM</strong> environment
943 root 1.59 variable; option <strong>-tn</strong>.</p>
944 root 1.67 </dd>
945 root 1.70 <dt><strong>lineSpace:</strong> <i>number</i></dt>
946 root 1.67 <dd>
947     <p>Specifies number of lines (pixel height) to insert between each row of
948 root 1.59 the display [default 0]; option <strong>-lsp</strong>.</p>
949 root 1.67 </dd>
950     <dt><strong>meta8:</strong> <i>boolean</i></dt>
951     <dd>
952     <p><strong>True</strong>: handle Meta (Alt) + keypress to set the 8th bit. <strong>False</strong>:
953 root 1.59 handle Meta (Alt) + keypress as an escape prefix [default].</p>
954 root 1.67 </dd>
955     <dt><strong>mouseWheelScrollPage:</strong> <i>boolean</i></dt>
956     <dd>
957     <p><strong>True</strong>: the mouse wheel scrolls a page full. <strong>False</strong>: the mouse wheel
958 root 1.59 scrolls five lines [default].</p>
959 root 1.67 </dd>
960     <dt><strong>pastableTabs:</strong> <i>boolean</i></dt>
961     <dd>
962     <p><strong>True</strong>: store tabs as wide characters. <strong>False</strong>: interpret tabs as cursor
963 root 1.59 movement only; option <code>-ptab</code>.</p>
964 root 1.67 </dd>
965     <dt><strong>cursorBlink:</strong> <i>boolean</i></dt>
966     <dd>
967     <p><strong>True</strong>: blink the cursor. <strong>False</strong>: do not blink the cursor [default];
968 root 1.59 option <strong>-bc</strong>.</p>
969 root 1.67 </dd>
970     <dt><strong>pointerBlank:</strong> <i>boolean</i></dt>
971     <dd>
972     <p><strong>True</strong>: blank the pointer when a key is pressed or after a set number
973 root 1.1 of seconds of inactivity. <strong>False</strong>: the pointer is always visible
974 root 1.59 [default].</p>
975 root 1.67 </dd>
976     <dt><strong>pointerColor:</strong> <i>colour</i></dt>
977     <dd>
978     <p>Mouse pointer foreground colour.</p>
979     </dd>
980     <dt><strong>pointerColor2:</strong> <i>colour</i></dt>
981     <dd>
982     <p>Mouse pointer background colour.</p>
983     </dd>
984     <dt><strong>pointerBlankDelay:</strong> <i>number</i></dt>
985     <dd>
986     <p>Specifies number of seconds before blanking the pointer [default 2]. Use a
987 root 1.59 large number (e.g. <code>987654321</code>) to effectively disable the timeout.</p>
988 root 1.67 </dd>
989     <dt><strong>backspacekey:</strong> <i>string</i></dt>
990     <dd>
991     <p>The string to send when the backspace key is pressed. If set to <strong>DEC</strong>
992 root 1.1 or unset it will send <strong>Delete</strong> (code 127) or, if shifted, <strong>Backspace</strong>
993     (code 8) - which can be reversed with the appropriate DEC private mode
994 root 1.59 escape sequence.</p>
995 root 1.67 </dd>
996     <dt><strong>deletekey:</strong> <i>string</i></dt>
997     <dd>
998     <p>The string to send when the delete key (not the keypad delete key) is
999 root 1.1 pressed. If unset it will send the sequence traditionally associated
1000 root 1.59 with the <strong>Execute</strong> key.</p>
1001 root 1.67 </dd>
1002     <dt><strong>cutchars:</strong> <i>string</i></dt>
1003     <dd>
1004     <p>The characters used as delimiters for double-click word selection
1005 root 1.59 (whitespace delimiting is added automatically if resource is given).</p>
1006 root 1.67 <p>When the perl selection extension is in use (the default if compiled
1007 root 1.71 in, see the rxvtperl(3) manpage), a suitable regex using these
1008 root 1.66 characters will be created (if the resource exists, otherwise, no regex
1009     will be created). In this mode, characters outside ISO-8859-1 can be used.</p>
1010 root 1.67 <p>When the selection extension is not used, only ISO-8859-1 characters can
1011 root 1.52 be used. If not specified, the built-in default is used:</p>
1012 root 1.71 <p><strong>BACKSLASH `&quot;'&amp;()*,;&lt;=&gt;?@[]^{|}</strong></p>
1013 root 1.67 </dd>
1014     <dt><strong>preeditType:</strong> <i>style</i></dt>
1015     <dd>
1016     <p><strong>OverTheSpot</strong>, <strong>OffTheSpot</strong>, <strong>Root</strong>; option <strong>-pt</strong>.</p>
1017     </dd>
1018     <dt><strong>inputMethod:</strong> <i>name</i></dt>
1019     <dd>
1020     <p><i>name</i> of inputMethod to use; option <strong>-im</strong>.</p>
1021     </dd>
1022     <dt><strong>imLocale:</strong> <i>name</i></dt>
1023     <dd>
1024     <p>The locale to use for opening the IM. You can use an <code>LC_CTYPE</code> of e.g.
1025 root 1.6 <code>de_DE.UTF-8</code> for normal text processing but <code>ja_JP.EUC-JP</code> for the
1026     input extension to be able to input japanese characters while staying in
1027 root 1.59 another locale; option <strong>-imlocale</strong>.</p>
1028 root 1.67 </dd>
1029     <dt><strong>imFont:</strong> <i>fontset</i></dt>
1030     <dd>
1031     <p>Specify the font-set used for XIM styles <code>OverTheSpot</code> or
1032 root 1.6 <code>OffTheSpot</code>. It must be a standard X font set (XLFD patterns separated
1033     by commas), i.e. it's not in the same format as the other font lists used
1034 root 1.71 in rxvt. The default will be set-up to chose *any* suitable found
1035 root 1.6 found, preferably one or two pixels differing in size to the base font.
1036 root 1.59 option <strong>-imfont</strong>.</p>
1037 root 1.67 </dd>
1038     <dt><strong>tripleclickwords:</strong> <i>boolean</i></dt>
1039     <dd>
1040     <p>Change the meaning of triple-click selection with the left mouse
1041 root 1.6 button. Instead of selecting a full line it will extend the selection to
1042 root 1.59 the end of the logical line only; option <strong>-tcw</strong>.</p>
1043 root 1.67 </dd>
1044     <dt><strong>insecure:</strong> <i>boolean</i></dt>
1045     <dd>
1046     <p>Enables &quot;insecure&quot; mode. Rxvt-unicode offers some escape sequences that
1047 root 1.1 echo arbitrary strings like the icon name or the locale. This could be
1048     abused if somebody gets 8-bit-clean access to your display, whether
1049 root 1.26 through a mail client displaying mail bodies unfiltered or through
1050 root 1.67 write(1) or any other means. Therefore, these sequences are disabled by
1051 root 1.26 default. (Note that many other terminals, including xterm, have these
1052 root 1.59 sequences enabled by default, which doesn't make it safer, though).</p>
1053 root 1.67 <p>You can enable them by setting this boolean resource or specifying
1054 root 1.26 <strong>-insecure</strong> as an option. At the moment, this enables display-answer,
1055 root 1.46 locale, findfont, icon label and window title requests.</p>
1056 root 1.67 </dd>
1057     <dt><strong>modifier:</strong> <i>modifier</i></dt>
1058     <dd>
1059     <p>Set the key to be interpreted as the Meta key to: <strong>alt</strong>, <strong>meta</strong>,
1060 root 1.1 <strong>hyper</strong>, <strong>super</strong>, <strong>mod1</strong>, <strong>mod2</strong>, <strong>mod3</strong>, <strong>mod4</strong>, <strong>mod5</strong>; option
1061 root 1.59 <strong>-mod</strong>.</p>
1062 root 1.67 </dd>
1063     <dt><strong>answerbackString:</strong> <i>string</i></dt>
1064     <dd>
1065     <p>Specify the reply rxvt-unicode sends to the shell when an ENQ (control-E)
1066 root 1.1 character is passed through. It may contain escape values as described
1067 root 1.59 in the entry on <strong>keysym</strong> following.</p>
1068 root 1.67 </dd>
1069     <dt><strong>secondaryScreen:</strong> <i>boolean</i></dt>
1070     <dd>
1071     <p>Turn on/off secondary screen (default enabled).</p>
1072     </dd>
1073     <dt><strong>secondaryScroll:</strong> <i>boolean</i></dt>
1074     <dd>
1075     <p>Turn on/off secondary screen scroll (default enabled). If this
1076 root 1.1 option is enabled, scrolls on the secondary screen will change the
1077     scrollback buffer and switching to/from the secondary screen will
1078 root 1.59 instead scroll the screen up.</p>
1079 root 1.67 </dd>
1080     <dt><strong>hold</strong>: <i>boolean</i></dt>
1081     <dd>
1082 root 1.71 <p>Turn on/off hold window after exit support. If enabled, rxvt
1083 root 1.27 will not immediately destroy its window when the program executed within
1084     it exits. Instead, it will wait till it is being killed or closed by the
1085 root 1.59 user.</p>
1086 root 1.67 </dd>
1087     <dt><strong>keysym.</strong><i>sym</i>: <i>string</i></dt>
1088     <dd>
1089     <p>Compile <i>frills</i>: Associate <i>string</i> with keysym <i>sym</i>. The
1090 root 1.59 intervening resource name <strong>keysym.</strong> cannot be omitted.</p>
1091 root 1.67 <p>The format of <i>sym</i> is &quot;<i>(modifiers-)key</i>&quot;, where <i>modifiers</i> can be
1092 root 1.3 any combination of <strong>ISOLevel3</strong>, <strong>AppKeypad</strong>, <strong>Control</strong>, <strong>NumLock</strong>,
1093     <strong>Shift</strong>, <strong>Meta</strong>, <strong>Lock</strong>, <strong>Mod1</strong>, <strong>Mod2</strong>, <strong>Mod3</strong>, <strong>Mod4</strong>, <strong>Mod5</strong>,
1094     and the abbreviated <strong>I</strong>, <strong>K</strong>, <strong>C</strong>, <strong>N</strong>, <strong>S</strong>, <strong>M</strong>, <strong>A</strong>, <strong>L</strong>, <strong>1</strong>,
1095     <strong>2</strong>, <strong>3</strong>, <strong>4</strong>, <strong>5</strong>.</p>
1096 root 1.67 <p>The <strong>NumLock</strong>, <strong>Meta</strong> and <strong>ISOLevel3</strong> modifiers are usually aliased to
1097 root 1.3 whatever modifier the NumLock key, Meta/Alt keys or ISO Level3 Shift/AltGr
1098 root 1.6 keys are being mapped. <strong>AppKeypad</strong> is a synthetic modifier mapped to the
1099 root 1.3 current application keymap mode state.</p>
1100 root 1.67 <p>The spellings of <i>key</i> can be obtained by using <strong>xev</strong>(1) command or
1101 root 1.3 searching keysym macros from <strong>/usr/X11R6/include/X11/keysymdef.h</strong> and
1102 root 1.67 omitting the prefix <strong>XK_</strong>. Alternatively you can specify <i>key</i> by its hex
1103     keysym value (<strong>0x0000 - 0xFFFF</strong>). Note that the lookup of <i>sym</i>s is not
1104 root 1.3 performed in an exact manner; however, the closest match is assured.</p>
1105 root 1.70 <p><i>string</i> may contain escape values (<code>\n</code>: newline, <code>\000</code>: octal
1106     number), see RESOURCES in <code>man 7 X</code> for futher details.</p>
1107 root 1.67 <p>You can define a range of keysyms in one shot by providing a <i>string</i>
1108 root 1.62 with pattern <strong>list/PREFIX/MIDDLE/SUFFIX</strong>, where the delimiter `/'
1109 root 1.3 should be a character not used by the strings.</p>
1110 root 1.67 <p>Its usage can be demonstrated by an example:</p>
1111     <pre> URxvt.keysym.M-C-0x61: list|\033&lt;M-C-|abc|&gt;
1112    
1113     </pre>
1114     <p>The above line is equivalent to the following three lines:</p>
1115     <pre> URxvt.keysym.Meta-Control-0x61: \033&lt;M-C-a&gt;
1116 root 1.11 URxvt.keysym.Meta-Control-0x62: \033&lt;M-C-b&gt;
1117 root 1.67 URxvt.keysym.Meta-Control-0x63: \033&lt;M-C-c&gt;
1118    
1119     </pre>
1120     <p>If <i>string</i> takes the form of <code>command:STRING</code>, the specified <strong>STRING</strong>
1121 root 1.71 is interpreted and executed as rxvt's control sequence. For
1122 root 1.67 example the following means &quot;change the current locale to <code>zh_CN.GBK</code>
1123     when Control-Meta-c is being pressed&quot;:</p>
1124     <pre> URxvt.keysym.M-C-c: command:\033]701;zh_CN.GBK\007
1125    
1126     </pre>
1127     <p>If <i>string</i> takes the form <code>perl:STRING</code>, then the specified <strong>STRING</strong>
1128 root 1.71 is passed to the <code>on_keyboard_command</code> perl handler. See the rxvtperl(3)
1129 root 1.67 manpage. For example, the <cite>selection</cite> extension (activated via
1130 root 1.71 <code>rxvt -pe selection</code>) listens for <code>selection:rot13</code> events:</p>
1131 root 1.67 <pre> URxvt.keysym.M-C-c: perl:selection:rot13
1132    
1133     </pre>
1134     <p>Due the the large number of modifier combinations, a defined key mapping
1135     will match if at <i>at least</i> the specified identifiers are being set, and
1136 root 1.21 no other key mappings with those and more bits are being defined. That
1137     means that defining a key map for <code>a</code> will automatically provide
1138     definitions for <code>Meta-a</code>, <code>Shift-a</code> and so on, unless some of those are defined
1139     mappings themselves.</p>
1140 root 1.67 <p>Unfortunately, this will override built-in key mappings. For example
1141 root 1.71 if you overwrite the <code>Insert</code> key you will disable rxvt's
1142 root 1.67 <code>Shift-Insert</code> mapping. To re-enable that, you can poke &quot;holes&quot; into the
1143 root 1.21 user-defined keymap using the <code>builtin:</code> replacement:</p>
1144 root 1.67 <pre> URxvt.keysym.Insert: &lt;my insert key sequence&gt;
1145     URxvt.keysym.S-Insert: builtin:
1146    
1147     </pre>
1148     <p>The first line defines a mapping for <code>Insert</code> and <i>any</i> combination
1149 root 1.21 of modifiers. The second line re-establishes the default mapping for
1150     <code>Shift-Insert</code>.</p>
1151 root 1.67 <p>The following example will map Control-Meta-1 and Control-Meta-2 to
1152 root 1.11 the fonts <code>suxuseuro</code> and <code>9x15bold</code>, so you can have some limited
1153 root 1.6 font-switching at runtime:</p>
1154 root 1.67 <pre> URxvt.keysym.M-C-1: command:\033]50;suxuseuro\007
1155     URxvt.keysym.M-C-2: command:\033]50;9x15bold\007
1156    
1157     </pre>
1158 root 1.71 <p>Other things are possible, e.g. resizing (see rxvt(7) for more
1159 root 1.11 info):</p>
1160 root 1.67 <pre> URxvt.keysym.M-C-3: command:\033[8;25;80t
1161     URxvt.keysym.M-C-4: command:\033[8;48;110t
1162 root 1.59
1163 root 1.67 </pre>
1164     </dd>
1165     <dt><strong>perl-ext-common</strong>: <i>string</i></dt>
1166     <dt><strong>perl-ext</strong>: <i>string</i></dt>
1167     <dd>
1168     <p>Comma-separated list(s) of perl extension scripts (default: <code>default</code>) to
1169 root 1.59 use in this terminal instance; option <strong>-pe</strong>.</p>
1170 root 1.67 <p>Extension names can be prefixed with a <code>-</code> sign to prohibit using
1171 root 1.40 them. This can be useful to selectively disable some extensions loaded
1172 root 1.38 by default, or specified via the <code>perl-ext-common</code> resource. For
1173     example, <code>default,-selection</code> will use all the default extension except
1174     <code>selection</code>.</p>
1175 root 1.67 <p>Extension names can also be followed by an argument in angle brackets
1176 root 1.40 (e.g. <code>searchable-scrollback&lt;M-s&gt;</code>, which binds the hotkey for
1177 root 1.62 searchable scrollback to Alt/Meta-s). Mentioning the same extension
1178 root 1.40 multiple times with different arguments will pass multiple arguments to
1179     the extension.</p>
1180 root 1.67 <p>Each extension is looked up in the library directories, loaded if
1181 root 1.38 necessary, and bound to the current terminal instance.</p>
1182 root 1.67 <p>If both of these resources are the empty string, then the perl
1183 root 1.38 interpreter will not be initialized. The idea behind two options is that
1184     <strong>perl-ext-common</strong> will be used for extensions that should be available to
1185     all instances, while <strong>perl-ext</strong> is used for specific instances.</p>
1186 root 1.67 </dd>
1187     <dt><strong>perl-eval</strong>: <i>string</i></dt>
1188     <dd>
1189     <p>Perl code to be evaluated when all extensions have been registered. See
1190 root 1.71 the rxvtperl(3) manpage. Due to security reasons, this resource
1191 root 1.59 will be ignored when running setuid/setgid.</p>
1192 root 1.67 </dd>
1193     <dt><strong>perl-lib</strong>: <i>path</i></dt>
1194     <dd>
1195     <p>Colon-separated list of additional directories that hold extension
1196 root 1.31 scripts. When looking for extensions specified by the <code>perl</code> resource,
1197 root 1.71 rxvt will first look in these directories and then in
1198     <cite>/opt/rxvt/lib/urxvt/perl/</cite>. Due to security reasons, this resource
1199 root 1.59 will be ignored when running setuid/setgid.</p>
1200 root 1.71 <p>See the rxvtperl(3) manpage.</p>
1201 root 1.67 </dd>
1202     <dt><strong>selection.pattern-<i>idx</i></strong>: <i>perl-regex</i></dt>
1203     <dd>
1204 root 1.71 <p>Additional selection patterns, see the rxvtperl(3) manpage for
1205 root 1.59 details.</p>
1206 root 1.67 </dd>
1207     <dt><strong>selection-autotransform.<i>idx</i></strong>: <i>perl-transform</i></dt>
1208     <dd>
1209 root 1.71 <p>Selection auto-transform patterns, see the rxvtperl(3) manpage
1210 root 1.59 for details.</p>
1211 root 1.67 </dd>
1212     <dt><strong>searchable-scrollback:</strong> <i>keysym</i></dt>
1213     <dd>
1214     <p>Sets the hotkey that starts the incremental scrollback buffer search
1215 root 1.59 (default: <code>M-s</code>).</p>
1216 root 1.67 </dd>
1217     <dt><strong>urlLauncher</strong>: <i>string</i></dt>
1218     <dd>
1219     <p>Specifies the program to be started with a URL argument. Used by the
1220 root 1.64 <code>selection-popup</code> and <code>matcher</code> perl extensions.</p>
1221 root 1.67 </dd>
1222     <dt><strong>transient-for</strong>: <i>windowid</i></dt>
1223     <dd>
1224     <p>Compile <i>frills</i>: Sets the WM_TRANSIENT_FOR property to the given window id.</p>
1225     </dd>
1226     <dt><strong>override-redirect</strong>: <i>boolean</i></dt>
1227     <dd>
1228     <p>Compile <i>frills</i>: Sets override-redirect for the terminal window, making
1229 root 1.59 it almost invisible to window managers; option <strong>-override-redirect</strong>.</p>
1230 root 1.67 </dd>
1231     <dt><strong>iso14755_52:</strong> <i>boolean</i></dt>
1232     <dd>
1233     <p>Turn on/off ISO 14755 5.2 mode (default enabled).</p>
1234     </dd>
1235 root 1.59 </dl>
1236 root 1.67
1237     </div>
1238     <h1 id="THE_SCROLLBAR">THE SCROLLBAR</h1><p><a href="#TOP" class="toplink">Top</a></p>
1239     <div id="THE_SCROLLBAR_CONTENT">
1240 root 1.71 <p>Lines of text that scroll off the top of the <strong>rxvt</strong> window
1241 root 1.1 (resource: <strong>saveLines</strong>) and can be scrolled back using the scrollbar
1242 root 1.71 or by keystrokes. The normal <strong>rxvt</strong> scrollbar has arrows and
1243 root 1.1 its behaviour is fairly intuitive. The <strong>xterm-scrollbar</strong> is without
1244 root 1.67 arrows and its behaviour mimics that of <i>xterm</i></p>
1245 root 1.1 <p>Scroll down with <strong>Button1</strong> (<strong>xterm-scrollbar</strong>) or <strong>Shift-Next</strong>.
1246     Scroll up with <strong>Button3</strong> (<strong>xterm-scrollbar</strong>) or <strong>Shift-Prior</strong>.
1247     Continuous scroll with <strong>Button2</strong>.</p>
1248 root 1.67
1249     </div>
1250     <h1 id="MOUSE_REPORTING">MOUSE REPORTING</h1><p><a href="#TOP" class="toplink">Top</a></p>
1251     <div id="MOUSE_REPORTING_CONTENT">
1252 root 1.1 <p>To temporarily override mouse reporting, for either the scrollbar or
1253     the normal text selection/insertion, hold either the Shift or the Meta
1254     (Alt) key while performing the desired mouse action.</p>
1255     <p>If mouse reporting mode is active, the normal scrollbar actions are
1256     disabled -- on the assumption that we are using a fullscreen
1257 root 1.11 application. Instead, pressing Button1 and Button3 sends <strong>ESC [ 6 ~</strong>
1258     (Next) and <strong>ESC [ 5 ~</strong> (Prior), respectively. Similarly, clicking on the
1259     up and down arrows sends <strong>ESC [ A</strong> (Up) and <strong>ESC [ B</strong> (Down),
1260 root 1.1 respectively.</p>
1261 root 1.67
1262     </div>
1263     <h1 id="THE_SELECTION_SELECTING_AND_PASTING_">THE SELECTION: SELECTING AND PASTING TEXT</h1><p><a href="#TOP" class="toplink">Top</a></p>
1264     <div id="THE_SELECTION_SELECTING_AND_PASTING_-2">
1265 root 1.66 <p>The behaviour of text selection and insertion/pasting mechanism is similar
1266 root 1.67 to <i>xterm</i>(1).</p>
1267 root 1.1 <dl>
1268 root 1.67 <dt><strong>Selecting</strong>:</dt>
1269     <dd>
1270     <p>Left click at the beginning of the region, drag to the end of the region
1271 root 1.6 and release; Right click to extend the marked region; Left double-click
1272     to select a word; Left triple-click to select the entire logical line
1273     (which can span multiple screen lines), unless modified by resource
1274 root 1.59 <strong>tripleclickwords</strong>.</p>
1275 root 1.67 <p>Starting a selection while pressing the <strong>Meta</strong> key (or <strong>Meta+Ctrl</strong> keys)
1276     (Compile: <i>frills</i>) will create a rectangular selection instead of a
1277 root 1.28 normal one. In this mode, every selected row becomes its own line in the
1278     selection, and trailing whitespace is visually underlined and removed from
1279     the selection.</p>
1280 root 1.67 </dd>
1281     <dt><strong>Pasting</strong>:</dt>
1282     <dd>
1283 root 1.71 <p>Pressing and releasing the Middle mouse button in an <strong>rxvt</strong>
1284 root 1.51 window causes the value of the PRIMARY selection (or CLIPBOARD with the
1285 root 1.66 <strong>Meta</strong> modifier) to be inserted as if it had been typed on the keyboard.</p>
1286 root 1.67 <p>Pressing <strong>Shift-Insert</strong> causes the value of the PRIMARY selection to be
1287 root 1.51 inserted too.</p>
1288 root 1.67 </dd>
1289 root 1.59 </dl>
1290 root 1.67
1291     </div>
1292     <h1 id="CHANGING_FONTS">CHANGING FONTS</h1><p><a href="#TOP" class="toplink">Top</a></p>
1293     <div id="CHANGING_FONTS_CONTENT">
1294 root 1.1 <p>Changing fonts (or font sizes, respectively) via the keypad is not yet
1295     supported in rxvt-unicode. Bug me if you need this.</p>
1296 root 1.46 <p>You can, however, switch fonts at runtime using escape sequences, e.g.:</p>
1297 root 1.67 <pre> printf '\e]710;%s\007' &quot;9x15bold,xft:Kochi Gothic&quot;
1298    
1299     </pre>
1300 root 1.46 <p>You can use keyboard shortcuts, too:</p>
1301 root 1.67 <pre> URxvt.keysym.M-C-1: command:\033]710;suxuseuro\007\033]711;suxuseuro\007
1302     URxvt.keysym.M-C-2: command:\033]710;9x15bold\007\033]711;9x15bold\007
1303    
1304     </pre>
1305 root 1.1 <p>rxvt-unicode will automatically re-apply these fonts to the output so far.</p>
1306 root 1.67
1307     </div>
1308     <h1 id="ISO_14755_SUPPORT">ISO 14755 SUPPORT</h1><p><a href="#TOP" class="toplink">Top</a></p>
1309     <div id="ISO_14755_SUPPORT_CONTENT">
1310 root 1.1 <p>ISO 14755 is a standard for entering and viewing unicode characters
1311     and character codes using the keyboard. It consists of 4 parts. The
1312 root 1.69 first part is available if rxvt-unicode has been compiled with
1313 root 1.1 <code>--enable-frills</code>, the rest is available when rxvt-unicode was compiled
1314     with <code>--enable-iso14755</code>.</p>
1315 root 1.67 <dl>
1316     <dt>* 5.1: Basic method</dt>
1317     <dd>
1318     <p>This allows you to enter unicode characters using their hexcode.</p>
1319     <p>Start by pressing and holding both <code>Control</code> and <code>Shift</code>, then enter
1320 root 1.1 hex-digits (between one and six). Releasing <code>Control</code> and <code>Shift</code> will
1321     commit the character as if it were typed directly. While holding down
1322     <code>Control</code> and <code>Shift</code> you can also enter multiple characters by pressing
1323     <code>Space</code>, which will commit the current character and lets you start a new
1324     one.</p>
1325 root 1.67 <p>As an example of use, imagine a business card with a japanese e-mail
1326 root 1.1 address, which you cannot type. Fortunately, the card has the e-mail
1327     address printed as hexcodes, e.g. <code>671d 65e5</code>. You can enter this easily
1328     by pressing <code>Control</code> and <code>Shift</code>, followed by <code>6-7-1-D-SPACE-6-5-E-5</code>,
1329     followed by releasing the modifier keys.</p>
1330 root 1.67 </dd>
1331     <dt>* 5.2: Keyboard symbols entry method</dt>
1332     <dd>
1333     <p>This mode lets you input characters representing the keycap symbols of
1334 root 1.59 your keyboard, if representable in the current locale encoding.</p>
1335 root 1.67 <p>Start by pressing <code>Control</code> and <code>Shift</code> together, then releasing
1336 root 1.1 them. The next special key (cursor keys, home etc.) you enter will not
1337 root 1.60 invoke its usual function but instead will insert the corresponding
1338 root 1.1 keycap symbol. The symbol will only be entered when the key has been
1339     released, otherwise pressing e.g. <code>Shift</code> would enter the symbol for
1340     <code>ISO Level 2 Switch</code>, although your intention might have been to enter a
1341     reverse tab (Shift-Tab).</p>
1342 root 1.67 </dd>
1343     <dt>* 5.3: Screen-selection entry method</dt>
1344     <dd>
1345     <p>While this is implemented already (it's basically the selection
1346 root 1.59 mechanism), it could be extended by displaying a unicode character map.</p>
1347 root 1.67 </dd>
1348     <dt>* 5.4: Feedback method for identifying displayed characters for later input</dt>
1349     <dd>
1350     <p>This method lets you display the unicode character code associated with
1351 root 1.59 characters already displayed.</p>
1352 root 1.67 <p>You enter this mode by holding down <code>Control</code> and <code>Shift</code> together, then
1353 root 1.1 pressing and holding the left mouse button and moving around. The unicode
1354 root 1.67 hex code(s) (it might be a combining character) of the character under the
1355 root 1.1 pointer is displayed until you release <code>Control</code> and <code>Shift</code>.</p>
1356 root 1.67 <p>In addition to the hex codes it will display the font used to draw this
1357 root 1.1 character - due to implementation reasons, characters combined with
1358     combining characters, line drawing characters and unknown characters will
1359     always be drawn using the built-in support font.</p>
1360 root 1.67 </dd>
1361     </dl>
1362 root 1.1 <p>With respect to conformance, rxvt-unicode is supposed to be compliant to
1363     both scenario A and B of ISO 14755, including part 5.2.</p>
1364 root 1.67
1365     </div>
1366     <h1 id="LOGIN_STAMP">LOGIN STAMP</h1><p><a href="#TOP" class="toplink">Top</a></p>
1367     <div id="LOGIN_STAMP_CONTENT">
1368 root 1.71 <p><strong>rxvt</strong> tries to write an entry into the <i>utmp</i>(5) file so that
1369 root 1.67 it can be seen via the <i>who(1)</i> command, and can accept messages. To
1370 root 1.71 allow this feature, <strong>rxvt</strong> may need to be installed setuid root
1371 root 1.6 on some systems or setgid to root or to some other group on others.</p>
1372 root 1.67
1373     </div>
1374     <h1 id="COLORS_AND_GRAPHICS">COLORS AND GRAPHICS</h1><p><a href="#TOP" class="toplink">Top</a></p>
1375     <div id="COLORS_AND_GRAPHICS_CONTENT">
1376 root 1.1 <p>In addition to the default foreground and background colours,
1377 root 1.71 <strong>rxvt</strong> can display up to 16 colours (8 ANSI colours plus
1378 root 1.1 high-intensity bold/blink versions of the same). Here is a list of the
1379 root 1.54 colours with their names.</p>
1380 root 1.68 <table><tr><td>color0</td><td>(black)</td><td>= Black</td></tr><tr><td>color1</td><td>(red)</td><td>= Red3</td></tr><tr><td>color2</td><td>(green)</td><td>= Green3</td></tr><tr><td>color3</td><td>(yellow)</td><td>= Yellow3</td></tr><tr><td>color4</td><td>(blue)</td><td>= Blue3</td></tr><tr><td>color5</td><td>(magenta)</td><td>= Magenta3</td></tr><tr><td>color6</td><td>(cyan)</td><td>= Cyan3</td></tr><tr><td>color7</td><td>(white)</td><td>= AntiqueWhite</td></tr><tr><td>color8</td><td>(bright black)</td><td>= Grey25</td></tr><tr><td>color9</td><td>(bright red)</td><td>= Red</td></tr><tr><td>color10</td><td>(bright green)</td><td>= Green</td></tr><tr><td>color11</td><td>(bright yellow)</td><td>= Yellow</td></tr><tr><td>color12</td><td>(bright blue)</td><td>= Blue</td></tr><tr><td>color13</td><td>(bright magenta)</td><td>= Magenta</td></tr><tr><td>color14</td><td>(bright cyan)</td><td>= Cyan</td></tr><tr><td>color15</td><td>(bright white)</td><td>= White</td></tr><tr><td>foreground</td><td></td><td>= Black</td></tr><tr><td>background</td><td></td><td>= White</td></tr></table><p>It is also possible to specify the colour values of <strong>foreground</strong>,
1381 root 1.1 <strong>background</strong>, <strong>cursorColor</strong>, <strong>cursorColor2</strong>, <strong>colorBD</strong>, <strong>colorUL</strong> as
1382     a number 0-15, as a convenient shorthand to reference the colour name of
1383     color0-color15.</p>
1384 root 1.71 <p>In addition to the colours defined above, rxvt offers an
1385 root 1.57 additional 72 colours. The first 64 of those (with indices 16 to 79)
1386 root 1.67 consist of a 4*4*4 RGB colour cube (i.e. <i>index = r * 16 + g * 4 + b +
1387     16</i>), followed by 8 additional shades of gray (with indices 80 to 87).</p>
1388 root 1.57 <p>Together, all those colours implement the 88 colour xterm colours. Only
1389     the first 16 can be changed using resources currently, the rest can only
1390 root 1.67 be changed via command sequences (&quot;escape codes&quot;).</p>
1391     <p>Note that <strong>-rv</strong> (<strong>&quot;reverseVideo: True&quot;</strong>) simulates reverse video by
1392 root 1.1 always swapping the foreground/background colours. This is in contrast to
1393 root 1.67 <i>xterm</i>(1) where the colours are only swapped if they have not otherwise
1394 root 1.1 been specified. For example,</p>
1395     <dl>
1396 root 1.71 <dt><strong>rxvt -fg Black -bg White -rv</strong></dt>
1397 root 1.67 <dd>
1398     <p>would yield White on Black, while on <i>xterm</i>(1) it would yield Black
1399 root 1.59 on White.</p>
1400 root 1.67 </dd>
1401 root 1.59 </dl>
1402 root 1.67
1403     </div>
1404     <h2 id="ALPHA_CHANNEL_SUPPORT">ALPHA CHANNEL SUPPORT</h2>
1405     <div id="ALPHA_CHANNEL_SUPPORT_CONTENT">
1406 root 1.56 <p>If Xft support has been compiled in and as long as Xft/Xrender/X don't get
1407     their act together, rxvt-unicode will support <code>rgba:rrrr/gggg/bbbb/aaaa</code>
1408     (recommended, but <strong>MUST</strong> have 4 digits/component) colour specifications,
1409     in addition to the ones provided by X, where the additional A component
1410     specifies opacity (alpha) values. The minimum value of <code>0</code> is completely
1411 root 1.64 transparent). You can also prefix any color with <code>[percent]</code>, where
1412     <code>percent</code> is a decimal percentage (0-100) that specifies the opacity of
1413     the color, where <code>0</code> is completely transparent and <code>100</code> is completelxy
1414     opaque.</p>
1415 root 1.67 <p>You probably need to specify <strong>&quot;-depth 32&quot;</strong>, too, and have the luck that
1416 root 1.56 your X-server uses ARGB pixel layout, as X is far from just supporting
1417     ARGB visuals out of the box, and rxvt-unicode just fudges around.</p>
1418     <p>For example, the following selects an almost completely transparent red
1419     background, and an almost opaque pink foreground:</p>
1420 root 1.71 <pre> rxvt -depth 32 -bg rgba:0000/0000/0000/aaaa -fg &quot;[80]pink&quot;
1421 root 1.67
1422     </pre>
1423     <p><i>Please note that transparency of any kind if completely unsupported by
1424     the author. Don't bug him with installation questions!</i></p>
1425    
1426     </div>
1427     <h1 id="ENVIRONMENT">ENVIRONMENT</h1><p><a href="#TOP" class="toplink">Top</a></p>
1428     <div id="ENVIRONMENT_CONTENT">
1429 root 1.71 <p><strong>rxvt</strong> sets and/or uses the following environment variables:</p>
1430 root 1.11 <dl>
1431 root 1.67 <dt><strong>TERM</strong></dt>
1432     <dd>
1433     <p>Normally set to <code>rxvt-unicode</code>, unless overwritten at configure time, via
1434 root 1.62 resources or on the command line.</p>
1435 root 1.67 </dd>
1436     <dt><strong>COLORTERM</strong></dt>
1437     <dd>
1438 root 1.71 <p>Either <code>rxvt</code>, <code>rxvt-xpm</code>, depending on whether rxvt was
1439     compiled with background image support, and optionally with the added
1440     extension <code>-mono</code> to indicate that rxvt-unicode runs on a monochrome
1441 root 1.70 screen.</p>
1442 root 1.67 </dd>
1443     <dt><strong>COLORFGBG</strong></dt>
1444     <dd>
1445     <p>Set to a string of the form <code>fg;bg</code> or <code>fg;xpm;bg</code>, where <code>fg</code> is
1446 root 1.11 the colour code used as default foreground/text colour (or the string
1447     <code>default</code> to indicate that the default-colour escape sequence is to be
1448     used), <code>bg</code> is the colour code used as default background colour (or the
1449 root 1.71 string <code>default</code>), and <code>xpm</code> is the string <code>default</code> if rxvt
1450     was compiled with background image support. Libraries like <code>ncurses</code>
1451 root 1.70 and <code>slang</code> can (and do) use this information to optimize screen output.</p>
1452 root 1.67 </dd>
1453     <dt><strong>WINDOWID</strong></dt>
1454     <dd>
1455 root 1.71 <p>Set to the (decimal) X Window ID of the rxvt window (the toplevel
1456 root 1.11 window, which usually has subwindows for the scrollbar, the terminal
1457 root 1.59 window and so on).</p>
1458 root 1.67 </dd>
1459     <dt><strong>TERMINFO</strong></dt>
1460     <dd>
1461 root 1.71 <p>Set to the terminfo directory iff rxvt was configured with
1462 root 1.59 <code>--with-terminfo=PATH</code>.</p>
1463 root 1.67 </dd>
1464     <dt><strong>DISPLAY</strong></dt>
1465     <dd>
1466 root 1.71 <p>Used by rxvt to connect to the display and set to the correct
1467 root 1.60 display in its child processes.</p>
1468 root 1.67 </dd>
1469     <dt><strong>SHELL</strong></dt>
1470     <dd>
1471     <p>The shell to be used for command execution, defaults to <code>/bin/sh</code>.</p>
1472     </dd>
1473     <dt><strong>RXVT_SOCKET</strong></dt>
1474     <dd>
1475 root 1.71 <p>The unix domain socket path used by rxvtc(1) and
1476     rxvtd(1).</p>
1477 root 1.67 <p>Default <cite>$HOME/.rxvt-unicode-<i>&lt;nodename</i></cite>.</p>
1478     </dd>
1479     <dt><strong>HOME</strong></dt>
1480     <dd>
1481     <p>Used to locate the default directory for the unix domain socket for
1482 root 1.11 daemon communications and to locate various resource files (such as
1483 root 1.59 <code>.Xdefaults</code>)</p>
1484 root 1.67 </dd>
1485     <dt><strong>XAPPLRESDIR</strong></dt>
1486     <dd>
1487     <p>Directory where various X resource files are being located.</p>
1488     </dd>
1489     <dt><strong>XENVIRONMENT</strong></dt>
1490     <dd>
1491     <p>If set and accessible, gives the name of a X resource file to be loaded by
1492 root 1.71 rxvt.</p>
1493 root 1.67 </dd>
1494 root 1.59 </dl>
1495 root 1.67
1496     </div>
1497     <h1 id="FILES">FILES</h1><p><a href="#TOP" class="toplink">Top</a></p>
1498     <div id="FILES_CONTENT">
1499 root 1.1 <dl>
1500 root 1.67 <dt><strong>/usr/lib/X11/rgb.txt</strong></dt>
1501     <dd>
1502     <p>Color names.</p>
1503     </dd>
1504     </dl>
1505 root 1.59
1506 root 1.67 </div>
1507     <h1 id="SEE_ALSO">SEE ALSO</h1><p><a href="#TOP" class="toplink">Top</a></p>
1508     <div id="SEE_ALSO_CONTENT">
1509 root 1.71 <p>rxvt(7), rxvtc(1), rxvtd(1), xterm(1), sh(1), resize(1), X(1), pty(4), tty(4), utmp(5)</p>
1510 root 1.67
1511     </div>
1512     <h1 id="CURRENT_PROJECT_COORDINATOR">CURRENT PROJECT COORDINATOR</h1><p><a href="#TOP" class="toplink">Top</a></p>
1513     <div id="CURRENT_PROJECT_COORDINATOR_CONTENT">
1514     <dl>
1515     <dt>Project Coordinator</dt>
1516     <dd>
1517     <p>Marc A. Lehmann <a href="#lt_rxvt_unicode_schmorp_de_gt">&lt;rxvt-unicode@schmorp.de&gt;</a></p>
1518     <p><a href="http://software.schmorp.de/pkg/rxvt-unicode.html">http://software.schmorp.de/pkg/rxvt-unicode.html</a></p>
1519     </dd>
1520 root 1.59 </dl>
1521    
1522 root 1.67 </div>
1523     <h1 id="AUTHORS">AUTHORS</h1><p><a href="#TOP" class="toplink">Top</a></p>
1524     <div id="AUTHORS_CONTENT">
1525 root 1.1 <dl>
1526 root 1.67 <dt>John Bovey</dt>
1527     <dd>
1528     <p>University of Kent, 1992, wrote the original Xvt.</p>
1529     </dd>
1530     <dt>Rob Nation <a href="#lt_nation_rocket_sanders_lockheed_co">&lt;nation@rocket.sanders.lockheed.com&gt;</a></dt>
1531     <dd>
1532     <p>very heavily modified Xvt and came up with Rxvt</p>
1533     </dd>
1534     <dt>Angelo Haritsis <a href="#lt_ah_doc_ic_ac_uk_gt">&lt;ah@doc.ic.ac.uk&gt;</a></dt>
1535     <dd>
1536     <p>wrote the Greek Keyboard Input (no longer in code)</p>
1537     </dd>
1538     <dt>mj olesen <a href="#lt_olesen_me_QueensU_CA_gt">&lt;olesen@me.QueensU.CA&gt;</a></dt>
1539     <dd>
1540     <p>Wrote the menu system.</p>
1541     <p>Project Coordinator (changes.txt 2.11 to 2.21)</p>
1542     </dd>
1543     <dt>Oezguer Kesim <a href="#lt_kesim_math_fu_berlin_de_gt">&lt;kesim@math.fu-berlin.de&gt;</a></dt>
1544     <dd>
1545     <p>Project Coordinator (changes.txt 2.21a to 2.4.5)</p>
1546     </dd>
1547     <dt>Geoff Wing <a href="#lt_gcw_pobox_com_gt">&lt;gcw@pobox.com&gt;</a></dt>
1548     <dd>
1549     <p>Rewrote screen display and text selection routines.</p>
1550     <p>Project Coordinator (changes.txt 2.4.6 - rxvt-unicode)</p>
1551     </dd>
1552     <dt>Marc Alexander Lehmann <a href="#lt_rxvt_unicode_schmorp_de_gt">&lt;rxvt-unicode@schmorp.de&gt;</a></dt>
1553     <dd>
1554     <p>Forked rxvt-unicode, unicode support, rewrote almost all the code, perl
1555 root 1.59 extension, random hacks, numerous bugfixes and extensions.</p>
1556 root 1.67 <p>Project Coordinator (Changes 1.0 -)</p>
1557     </dd>
1558     <dt>Emanuele Giaquinta <a href="#lt_e_giaquinta_glauco_it_gt">&lt;e.giaquinta@glauco.it&gt;</a></dt>
1559     <dd>
1560     <p>Pty/tty/utmp/wtmp rewrite, lots of random hacking and bugfixing.</p>
1561     </dd>
1562 root 1.59 </dl>
1563 root 1.1
1564 root 1.67 </div>
1565     </div></body>
1566 root 1.1 </html>