mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-08 13:30:08 -05:00
jack: use node.passive to make passive links
Let the node.passive property make passive links. PIPEWIRE_LINK_PASSIVE overrides the node property. Add some nice tweaks for qsynth so that it suspends and fades out nicely by default.
This commit is contained in:
parent
ead59e750f
commit
8e9b136b10
2 changed files with 16 additions and 7 deletions
|
|
@ -104,15 +104,22 @@ jack.rules = [
|
|||
}
|
||||
}
|
||||
}
|
||||
{
|
||||
matches = [
|
||||
{
|
||||
application.process.binary = "jack_bufsize"
|
||||
}
|
||||
{ matches = [
|
||||
{ application.process.binary = "jack_bufsize" }
|
||||
]
|
||||
actions = {
|
||||
update-props = {
|
||||
jack.global-buffer-size = true
|
||||
jack.global-buffer-size = true # quantum set globally using metadata
|
||||
}
|
||||
}
|
||||
}
|
||||
{ matches = [
|
||||
{ application.process.binary = "qsynth" }
|
||||
]
|
||||
actions = {
|
||||
update-props = {
|
||||
node.pause-on-idle = false # makes audio fade out when idle
|
||||
node.passive = true # makes the sink and qsynth suspend
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue