Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WirePlumber Module] Improvement, Added source node #1905

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
[WirePlumber Module] Updated the .scd to match the changes in code
Let's just say I tried and that's it
  • Loading branch information
Arisa-Snowbell committed Dec 26, 2022
commit 0abc8e08b94803a1d4fad0f1fc6152a1e4530b63
45 changes: 35 additions & 10 deletions man/waybar-wireplumber.5.scd
Original file line number Diff line number Diff line change
@@ -12,12 +12,26 @@ The *wireplumber* module displays the current volume reported by WirePlumber.

*format*: ++
typeof: string ++
default: *{volume}%* ++
default: *{format_sink} {format_source}* ++
The format, how information should be displayed. This format is used when other formats aren't specified.

*format-muted*: ++
*format-sink*: ++
typeof: string ++
This format is used when the sound is muted.
default: *OUT: {volume}%* ++
This format is used when the sink node is not muted.

*format-source*: ++
typeof: string ++
default: *IN: {volume}%* ++
This format is used when the source node is not muted.

*format-sink-muted*: ++
typeof: string ++
This format is used when the sink node is muted.

*format-source-muted*: ++
typeof: string ++
This format is used when the source node is muted.

*tooltip*: ++
typeof: bool ++
@@ -26,7 +40,7 @@ The *wireplumber* module displays the current volume reported by WirePlumber.

*tooltip-format*: ++
typeof: string ++
default: *{node_name}* ++
default: *Sink: {sinknode_name} Source: {sourcenode_name}* ++
The format of information displayed in the tooltip.

*rotate*: ++
@@ -69,19 +83,30 @@ The *wireplumber* module displays the current volume reported by WirePlumber.

*{volume}*: Volume in percentage.

*{node_name}*: The node's nickname as reported by WirePlumber (*node.nick* property)
*{sinknode_name}*: The sink node's nickname as reported by WirePlumber (*node.nick* property)

*{sourcenode_name}*: The source node's nickname as reported by WirePlumber (*node.nick* property)

Only in *{format}*:
*{format_sink}*: Represents the field *format-sink* in config
*{format_source}*: Represents the field *format-source* in config

# EXAMPLES

```
"wireplumber": {
"format": "{volume}%",
"format-muted": "",
"on-click": "helvum"
}
"format": "{format-sink} {format-source}",
"format-sink": "OUT: {volume}%",
"format-sink-muted": "OUT: MUTED",
"format-source": "IN: {volume}%",
"format-source-muted": "IN: MUTED",
"tooltip": true,
"on-click": "qpwgraph",
},
```

# STYLE

- *#wireplumber*
- *#wireplumber.muted*
- *#wireplumber.sinkmuted*
- *#wireplumber.sourcemuted*