diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:28:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:28:17 +0000 |
commit | 7a46c07230b8d8108c0e8e80df4522d0ac116538 (patch) | |
tree | d483300dab478b994fe199a5d19d18d74153718a /man/pw-dot.1.rst.in | |
parent | Initial commit. (diff) | |
download | pipewire-0bfb2679f751193be0325ef92c84c3863d22ac84.tar.xz pipewire-0bfb2679f751193be0325ef92c84c3863d22ac84.zip |
Adding upstream version 0.3.65.upstream/0.3.65upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | man/pw-dot.1.rst.in | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/man/pw-dot.1.rst.in b/man/pw-dot.1.rst.in new file mode 100644 index 0000000..4599539 --- /dev/null +++ b/man/pw-dot.1.rst.in @@ -0,0 +1,65 @@ +pw-dot +###### + +--------------------------- +The PipeWire dot graph dump +--------------------------- + +:Manual section: 1 +:Manual group: General Commands Manual + +SYNOPSIS +======== + +| **pw-dot** [*options*] + +DESCRIPTION +=========== + +Create a .dot file of the PipeWire graph. + +The .dot file can then be visualized with a tool like **dotty** +or rendered to a PNG file with ``dot -Tpng pw.dot -o pw.png``. + +OPTIONS +======= + +-r | --remote=NAME + The name the remote instance to connect to. If left unspecified, + a connection is made to the default PipeWire instance. + +-h | --help + Show help. + +--version + Show version information. + +-a | --all + Show all object types. + +-s | --smart + Show linked objects only. + +-d | --detail + Show all object properties. + +-o FILE | --output=FILE + Output file name (Default pw.dot). Use - for stdout. + +-L | --lr + Lay the graph from left to right, instead of dot's default top to bottom. + +-9 | --90 + Lay the graph using 90-degree angles in edges. + +AUTHORS +======= + +The PipeWire Developers <@PACKAGE_BUGREPORT@>; PipeWire is available from @PACKAGE_URL@ + +SEE ALSO +======== + +``pipewire(1)``, +``pw-cli(1)``, +``pw-mon(1)``, |