mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-21 17:51:08 +00:00
Update cheatsheets
This commit is contained in:
34
linux/pw-dot
Normal file
34
linux/pw-dot
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# pw-dot
|
||||
|
||||
> Create `.dot` files of the PipeWire graph.
|
||||
> See also: `dot`, for rendering graph.
|
||||
> More information: <https://docs.pipewire.org/page_man_pw-dot_1.html>.
|
||||
|
||||
- Generate a graph to `pw.dot` file:
|
||||
|
||||
`pw-dot`
|
||||
|
||||
- Specify an output file, showing all object types:
|
||||
|
||||
`pw-dot --output {{path/to/file.dot}} --all`
|
||||
|
||||
- Print `.dot` graph to `stdout`, showing all object properties:
|
||||
|
||||
`pw-dot --output - --detail`
|
||||
|
||||
- Generate a graph from a remote instance, showing only linked objects:
|
||||
|
||||
`pw-dot --remote {{remote_name}} --smart`
|
||||
|
||||
- Lay the graph from left to right, instead of dot's default top to bottom:
|
||||
|
||||
`pw-dot --lr`
|
||||
|
||||
- Lay the graph using 90-degree angles in edges:
|
||||
|
||||
`pw-dot --90`
|
||||
Reference in New Issue
Block a user