diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2011-01-19 10:06:56 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2011-01-19 10:06:56 -0500 |
commit | 1439da945a066c5bdf821a4f1af2bc356452e170 (patch) | |
tree | 099cf54d224b6799c45f4139ac8e4877a77ab0cb /man | |
parent | 2bb00a3e1d7eea20a232f079d41cd45985e0a721 (diff) |
config: move man pages into their own directory
Use services provided by XORG_MANPAGE_SECTIONS.
Use standard Makefile for man pages.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 12 | ||||
-rw-r--r-- | man/xlsclients.man | 62 |
2 files changed, 74 insertions, 0 deletions
diff --git a/man/Makefile.am b/man/Makefile.am new file mode 100644 index 0000000..0837dba --- /dev/null +++ b/man/Makefile.am @@ -0,0 +1,12 @@ + +appmandir = $(APP_MAN_DIR) +appman_PRE = xlsclients.man +appman_DATA = $(appman_PRE:man=$(APP_MAN_SUFFIX)) + +EXTRA_DIST = $(appman_PRE) +CLEANFILES = $(appman_DATA) +SUFFIXES = .$(APP_MAN_SUFFIX) .man + +# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure +.man.$(APP_MAN_SUFFIX): + $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ diff --git a/man/xlsclients.man b/man/xlsclients.man new file mode 100644 index 0000000..552907f --- /dev/null +++ b/man/xlsclients.man @@ -0,0 +1,62 @@ +.\" Copyright 1991, 1994, 1998 The Open Group +.\" +.\" Permission to use, copy, modify, distribute, and sell this software and its +.\" documentation for any purpose is hereby granted without fee, provided that +.\" the above copyright notice appear in all copies and that both that +.\" copyright notice and this permission notice appear in supporting +.\" documentation. +.\" +.\" The above copyright notice and this permission notice shall be included +.\" in all copies or substantial portions of the Software. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +.\" IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR +.\" OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +.\" ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +.\" OTHER DEALINGS IN THE SOFTWARE. +.\" +.\" Except as contained in this notice, the name of The Open Group shall +.\" not be used in advertising or otherwise to promote the sale, use or +.\" other dealings in this Software without prior written authorization +.\" from The Open Group. +.\" +.TH XLSCLIENTS 1 __xorgversion__ +.SH NAME +xlsclients - list client applications running on a display +.SH SYNOPSIS +.B "xlsclients" +[-display \fIdisplayname\fP] [-a] [-l] [-m maxcmdlen] +.SH DESCRIPTION +.PP +.I Xlsclients +is a utility for listing information about the client applications +running on a display. It may be used to generate scripts representing +a snapshot of the user's current session. +.SH OPTIONS +.TP 8 +.B \-display \fIdisplayname\fP +This option specifies the X server to contact. +.TP 8 +.B \-a +This option indicates that clients on all screens should be listed. By +default, only those clients on the default screen are listed. +.TP 8 +.B \-l +List in long format, giving the window name, icon name, +and class hints in addition to the machine name and command string shown in +the default format. +.TP 8 +.B \-m \fImaxcmdlen\fP +This option specifies the maximum number of characters in a command to +print out. The default is 10000. +.SH ENVIRONMENT +.PP +.TP 8 +.B DISPLAY +To get the default host, display number, and screen. +.SH "SEE ALSO" +X(__miscmansuffix__), xwininfo(__appmansuffix__), xprop(__appmansuffix__) +.SH AUTHOR +Jim Fulton, MIT X Consortium |