[clfswm-cvs] [clfswm-git]CLFSWM - A(nother) Common Lisp FullScreen Window Manager branch master updated. R-1106-136-ge45169e

Philippe Brochard pbrochard at common-lisp.net
Fri Oct 12 21:01:00 UTC 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CLFSWM - A(nother) Common Lisp FullScreen Window Manager".

The branch, master has been updated
       via  e45169eb94233f9bdb3a8f3b25af36f30dd68e45 (commit)
      from  50f822c99b029eafbabd9fb5045eecc6d4e43f9c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e45169eb94233f9bdb3a8f3b25af36f30dd68e45
Author: Philippe Brochard <pbrochard at common-lisp.net>
Date:   Fri Oct 12 23:00:55 2012 +0200

    man page added

diff --git a/clfswm.1 b/clfswm.1
new file mode 100644
index 0000000..3725c53
--- /dev/null
+++ b/clfswm.1
@@ -0,0 +1,123 @@
+'\" t
+.\"     Title: clfswm
+.\"    Author: [see the "AUTHOR" section]
+.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
+.\"      Date: 10/12/2012
+.\"    Manual: \ \&
+.\"    Source: \ \&
+.\"  Language: English
+.\"
+.TH "CLFSWM" "1" "10/12/2012" "\ \&" "\ \&"
+.\" -----------------------------------------------------------------
+.\" * Define some portability stuff
+.\" -----------------------------------------------------------------
+.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.\" http://bugs.debian.org/507673
+.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
+.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.ie \n(.g .ds Aq \(aq
+.el       .ds Aq '
+.\" -----------------------------------------------------------------
+.\" * set default formatting
+.\" -----------------------------------------------------------------
+.\" disable hyphenation
+.nh
+.\" disable justification (adjust text to left margin only)
+.ad l
+.\" -----------------------------------------------------------------
+.\" * MAIN CONTENT STARTS HERE *
+.\" -----------------------------------------------------------------
+.SH "NAME"
+clfswm \- A(nother) Common Lisp Full Screen Window Manager
+.SH "SYNOPSIS"
+.sp
+\fBclfswm\fR [\fIimplementation\fR]
+.SH "DESCRIPTION"
+.sp
+CLFSWM is a 100% Common Lisp X11 window manager (based on Tinywm and Stumpwm\&. Many thanks to them)\&. It can be driven only with the keyboard or with the mouse\&.
+.sp
+CLFSWM uses the following rules to determine which implementation should be used:
+.sp
+.RS 4
+.ie n \{\
+\h'-04' 1.\h'+01'\c
+.\}
+.el \{\
+.sp -1
+.IP "  1." 4.2
+.\}
+the first command line argument\&.
+.RE
+.sp
+.RS 4
+.ie n \{\
+\h'-04' 2.\h'+01'\c
+.\}
+.el \{\
+.sp -1
+.IP "  2." 4.2
+.\}
+environment variable $LISP
+.RE
+.sp
+.RS 4
+.ie n \{\
+\h'-04' 3.\h'+01'\c
+.\}
+.el \{\
+.sp -1
+.IP "  3." 4.2
+.\}
+the first line like "debian=<impl>" in its configuration file\&.
+.RE
+.sp
+.RS 4
+.ie n \{\
+\h'-04' 4.\h'+01'\c
+.\}
+.el \{\
+.sp -1
+.IP "  4." 4.2
+.\}
+clisp
+.RE
+.sp
+CLFSWM handles clisp, sbcl and cmucl internally\&. If you specify a different implementation, CLFSWM will try to execute the command clfswm\-<implementation>\&. See /usr/share/doc/clfswm/README\&.Debian for details\&.
+.SH "OPTIONS"
+.PP
+\fIimplementation\fR
+.RS 4
+Indicates which implementation should be used\&.
+.RE
+.SH "ENVIRONMENT"
+.PP
+\fILISP\fR
+.RS 4
+Indicates which implementation should be used\&.
+.RE
+.SH "FILES"
+.PP
+\fI$XDG_CONFIG_HOME/clfswm/clfswmrc\fR
+.RS 4
+User configuration file\&. If XDG_CONFIG_HOME is undefined,
+\fI$HOME/\&.config/clfswm/clfswmrc\fR
+will be used\&.
+.RE
+.PP
+\fI$HOME/\&.clfswmrc\fR
+.RS 4
+Deprecated\&. This file will be used only if the previous file does not exist\&.
+.RE
+.PP
+\fI/etc/clfswmrc\fR
+.RS 4
+System\-wide configuration file\&.
+.RE
+.SH "SEE ALSO"
+.sp
+clisp(1), sbcl(1), cmucl(1)\&.
+.SH "AUTHOR"
+.sp
+CLFSWM was written by Philippe Brochard <pbrochard at common\-lisp\&.net>\&.
+.sp
+This manual page was written by Desmond O\&. Chang <dochang at gmail\&.com>, for the Debian project (and may be used by others)\&.
diff --git a/doc/clfswm.1.txt b/doc/clfswm.1.txt
new file mode 100644
index 0000000..df742d7
--- /dev/null
+++ b/doc/clfswm.1.txt
@@ -0,0 +1,73 @@
+// -*- mode: doc -*-
+// Use "a2x -f manpage clfswm.1.txt" to generate the man page.
+CLFSWM(1)
+=========
+:doctype: manpage
+
+
+NAME
+----
+clfswm - A(nother) Common Lisp Full Screen Window Manager
+
+
+SYNOPSIS
+--------
+*clfswm* ['implementation']
+
+
+DESCRIPTION
+-----------
+CLFSWM is a 100% Common Lisp X11 window manager (based on Tinywm and
+Stumpwm. Many thanks to them).  It can be driven only with the
+keyboard or with the mouse.
+
+CLFSWM uses the following rules to determine which implementation
+should be used:
+
+. the first command line argument.
+. environment variable $LISP
+. the first line like "debian=<impl>" in its configuration file.
+. clisp
+
+CLFSWM handles clisp, sbcl and cmucl internally.  If you specify a
+different implementation, CLFSWM will try to execute the command
+`clfswm-<implementation>`.  See /usr/share/doc/clfswm/README.Debian
+for details.
+
+
+OPTIONS
+-------
+'implementation'::
+	Indicates which implementation should be used.
+
+
+ENVIRONMENT
+-----------
+'LISP'::
+	Indicates which implementation should be used.
+
+
+FILES
+-----
+'$XDG_CONFIG_HOME/clfswm/clfswmrc'::
+	User configuration file.  If XDG_CONFIG_HOME is undefined,
+	'$HOME/.config/clfswm/clfswmrc' will be used.
+
+'$HOME/.clfswmrc'::
+	Deprecated.  This file will be used only if the previous file
+	does not exist.
+
+'/etc/clfswmrc'::
+	System-wide configuration file.
+
+
+SEE ALSO
+--------
+clisp(1), sbcl(1), cmucl(1).
+
+AUTHOR
+------
+CLFSWM was written by Philippe Brochard <pbrochard at common-lisp.net>.
+
+This manual page was written by Desmond O. Chang <dochang at gmail.com>,
+for the Debian project (and may be used by others).

-----------------------------------------------------------------------

Summary of changes:
 clfswm.1         |  123 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 doc/clfswm.1.txt |   73 ++++++++++++++++++++++++++++++++
 2 files changed, 196 insertions(+), 0 deletions(-)
 create mode 100644 clfswm.1
 create mode 100644 doc/clfswm.1.txt


hooks/post-receive
-- 
CLFSWM - A(nother) Common Lisp FullScreen Window Manager




More information about the clfswm-cvs mailing list