~kklimonda/ubuntu/lucid/rxvt-unicode/lp-514821

« back to all changes in this revision

Viewing changes to doc/rxvtc.1.html

  • Committer: Bazaar Package Importer
  • Author(s): Decklin Foster
  • Date: 2006-09-01 14:44:58 UTC
  • mfrom: (1.1.8 upstream) (3.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060901144458-98hrz8zg01w8a3vy
Tags: 7.9-2
* Edit the comments in the app-defaults file, and disable all settings by
  default. If font autoselection fails, I would prefer to open a new bug
  specifically for that. (Closes: #385481)
* Reorganize and edit README.Debian, pushing as much as possible into FAQ
  format (with resource setting issues first).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" ?>
1
2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
3
<html xmlns="http://www.w3.org/1999/xhtml">
3
4
<head>
4
5
<title>rxvtc - control the rxvtd daemon</title>
 
6
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
5
7
<link rev="made" href="mailto:perl-binary@plan9.de" />
6
8
</head>
7
9
 
46
48
<hr />
47
49
<h1><a name="options">OPTIONS</a></h1>
48
50
<p>All options that are valid for <strong>rxvt</strong> are valid for
49
 
<strong>rxvtc</strong>, too. Please note that all options are currently
50
 
interpreted in the context of the daemon process, which makes a difference
51
 
for options that specify a file descriptor (such as <strong>-pty-fd</strong>).</p>
 
51
<strong>rxvtc</strong>, too. Please note that options are interpreted in the
 
52
context of the daemon process. However, as current working directory,
 
53
process environment and any file descriptor (e.g. for <code>-pty-fd</code>) are
 
54
preserved, this rarely makes a difference.</p>
52
55
<p>
53
56
</p>
54
57
<hr />
58
61
cases it returns with status <code>1</code>.</p>
59
62
<p>This can be used to implement auto-starting behaviour, by checking for an
60
63
exit status of <code>2</code>, running <code>rxvtd -f -q</code> and retrying the call
61
 
to rxvtc.</p>
 
64
to rxvtc, like this:</p>
 
65
<pre>
 
66
   #!/bin/sh
 
67
   rxvtc &quot;$@&quot;
 
68
   if [ $? -eq 2 ]; then
 
69
      rxvtd -q -o -f
 
70
      rxvtc &quot;$@&quot;
 
71
   fi</pre>
62
72
<p>
63
73
</p>
64
74
<hr />
67
77
to the new instance, and will be interpreted as if <strong>rxvt</strong> were
68
78
started directly.</p>
69
79
<dl>
70
 
<dt><strong><a name="item_rxvt_socket"><strong>RXVT_SOCKET</strong></a></strong><br />
71
 
</dt>
 
80
<dt><strong><a name="item_rxvt_socket"><strong>RXVT_SOCKET</strong></a></strong>
 
81
 
72
82
<dd>
73
 
Both rxvtc and rxvtd use the environment variable
 
83
<p>Both rxvtc and rxvtd use the environment variable
74
84
<em>RXVT_SOCKET</em> to create a listening socket and to contact the
75
85
rxvtd, respectively. If the variable is missing,
76
86
<em>$HOME/.rxvt-unicode-<em>&lt;nodename</em> </em>&gt; &gt;&gt;&gt; is used.  The variable must
77
 
specify the absolute path of the socket to create.
 
87
specify the absolute path of the socket to create.</p>
78
88
</dd>
79
 
<p></p></dl>
 
89
</li>
 
90
</dl>
80
91
<p>
81
92
</p>
82
93
<hr />