ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/rxvt-unicode/doc/rxvtd.1.txt
Revision: 1.6
Committed: Sat Jun 2 05:13:42 2007 UTC (17 years, 1 month ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-8_3
Changes since 1.5: +3 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 NAME
2 rxvtd - rxvt terminal daemon
3
4 SYNOPSIS
5 rxvtd [-q|--quiet] [-o|--opendisplay] [-f|--fork]
6
7 rxvtd -q -o -f # for .xsession use
8
9 DESCRIPTION
10 This manpage describes the rxvtd daemon, which is the same vt102
11 terminal emulator as rxvt, but runs as a daemon that can open multiple
12 terminal windows within the same process.
13
14 You can run it from your X startup scripts, for example, although it is
15 not dependent on a working DISPLAY and, in fact, can open windows on
16 multiple X displays on the same time.
17
18 Advantages of running a rxvt daemon include faster creation time for
19 terminal windows and a lot of saved memory.
20
21 The disadvantage is a possible impact on stability - if the main program
22 crashes, all processes in the terminal windows are terminated. For
23 example, as there is no way to cleanly react to abnormal connection
24 closes, "xkill" and server resets/restarts will kill the rxvtd instance
25 including all windows it has opened.
26
27 OPTIONS
28 rxvtd currently understands a few options only. Bundling of options is
29 not yet supported.
30
31 -q, --quiet
32 Normally, rxvtd outputs the message "rxvt-unicode daemon listening
33 on <path>" after binding to its control socket. This option will
34 suppress this message (errors and warnings will still be logged).
35
36 -o, --opendisplay
37 This forces rxvtd to open a connection to the current $DISPLAY and
38 keep it open.
39
40 This is useful if you want to bind an instance of rxvtd to the
41 lifetime of a specific display/server. If the server does a reset,
42 rxvtd will be killed automatically.
43
44 -f, --fork
45 This makes rxvtd fork after it has bound itself to its control
46 socket.
47
48 EXAMPLES
49 This is a useful invocation of rxvtd in a .xsession-style script:
50
51 rxvtd -q -f -o
52
53 This waits till the control socket is available, opens the current
54 display and forks into the background. When you log-out, the server is
55 reset and rxvtd is killed.
56
57 ENVIRONMENT
58 RXVT_SOCKET
59 Both rxvtc and rxvtd use the environment variable RXVT_SOCKET to
60 create a listening socket and to contact the rxvtd, respectively. If
61 the variable is missing, $HOME/.rxvt-unicode-*<nodename>* is used.
62 The variable must specify the absolute path of the socket to create.
63
64 DISPLAY
65 Only used when the "--opendisplay" option is specified. Must contain
66 a valid X display name.
67
68 SEE ALSO
69 rxvt(7), rxvtc(1)
70