diff options
author | Wim Taymans <wtaymans@redhat.com> | 2018-08-17 10:18:41 +0200 |
---|---|---|
committer | Wim Taymans <wtaymans@redhat.com> | 2018-08-17 10:19:20 +0200 |
commit | c06d775ddc5f97ce7583bb3344a2c59b74381966 (patch) | |
tree | 25ddfe7780e1bae2f44c80cc0b92bf14d37ac478 /man | |
parent | e2c2b547428765a617c30623a1245b4a523c9bb2 (diff) |
man: add man page for config file
Diffstat (limited to 'man')
-rw-r--r-- | man/meson.build | 2 | ||||
-rw-r--r-- | man/pipewire.conf.5.xml.in | 68 |
2 files changed, 70 insertions, 0 deletions
diff --git a/man/meson.build b/man/meson.build index 65644442..1d7045bf 100644 --- a/man/meson.build +++ b/man/meson.build @@ -3,10 +3,12 @@ manpage_conf.set('PACKAGE_NAME', meson.project_name()) manpage_conf.set('PACKAGE_VERSION', meson.project_version()) manpage_conf.set('PACKAGE_URL', 'http://pipewire.org') manpage_conf.set('PACKAGE_BUGREPORT', 'https://github.com/PipeWire/pipewire/issues') +manpage_conf.set('PIPEWIRE_CONFIG_DIR', pipewire_configdir) manpage_conf.set('top_srcdir', meson.source_root()) manpage_conf.set('top_builddir', meson.build_root()) manpages = ['pipewire.1', + 'pipewire.conf.5', 'pipewire-cli.1', 'pipewire-monitor.1' ] diff --git a/man/pipewire.conf.5.xml.in b/man/pipewire.conf.5.xml.in new file mode 100644 index 00000000..03fa6467 --- /dev/null +++ b/man/pipewire.conf.5.xml.in @@ -0,0 +1,68 @@ +<?xml version="1.0"?><!--*-nxml-*--> +<!DOCTYPE manpage SYSTEM "xmltoman.dtd"> +<?xml-stylesheet type="text/xsl" href="xmltoman.xsl" ?> + +<!-- +This file is part of PipeWire. + +PipeWire is free software; you can redistribute it and/or modify it +under the terms of the GNU Lesser General Public License as +published by the Free Software Foundation; either version 2.1 of the +License, or (at your option) any later version. + +PipeWire is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General +Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with PipeWire; if not, see <http://www.gnu.org/licenses/>. +--> + +<manpage name="pipewire.conf" section="5" desc="The PipeWire server configuration file"> + + <synopsis> + <p><file>@PIPEWIRE_CONFIG_DIR@/pipewire.conf</file></p> + </synopsis> + + <description> + <p>PipeWire is a service that allows access to multimedia devices + and allows media sharing between applications. </p> + + <p>On startup, the daemon reads a configuration file to configure + itself. It executes a series of commands listed in the config + file.</p> + + <p>The config file in the default location is used but the + environment variable PIPEWIRE_CONFIG_FILE can be used to specify + an alternative config file.</p> + </description> + + <section name="General Commands"> + + <option> + <p><opt>help</opt></p> + <optdesc><p>Show a quick help on the commands available.</p></optdesc> + </option> + </section> + + <section name="Module Management"> + <option> + <p><opt>load-module</opt> <arg>name</arg> [<arg>arguments...</arg>]</p> + <optdesc><p>Load a module specified by its name and arguments. For most + modules it is OK to be loaded more than once.</p></optdesc> + </option> + </section> + + <section name="Authors"> + <p>The PipeWire Developers <@PACKAGE_BUGREPORT@>; PipeWire is available from <url href="@PACKAGE_URL@"/></p> + </section> + + <section name="See also"> + <p> + <manref name="pipewire" section="1"/>, + <manref name="pipewire-monitor" section="1"/>, + </p> + </section> + +</manpage> |