mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-02-07 13:30:28 +01:00
60 lines
1.2 KiB
Text
60 lines
1.2 KiB
Text
context.modules = [
|
|
{ name = libpipewire-module-protocol-native }
|
|
]
|
|
|
|
wireplumber.section.array.boolean = [ true, false ]
|
|
|
|
wireplumber.section.array.int = [ 1, 2, 3 ]
|
|
|
|
wireplumber.section.array.float = [ 1.11, 2.22, 3.33 ]
|
|
|
|
wireplumber.section.array.string = [ "foo", "bar" ]
|
|
|
|
wireplumber.section.array.array = [ [true], [false] ]
|
|
|
|
wireplumber.section.array.object = [ { key1 = foo }, { key2 = 4 } ]
|
|
|
|
wireplumber.section.object = {
|
|
key.boolean = true
|
|
key.int = -1
|
|
key.float = 3.14
|
|
key.string = "wireplumber"
|
|
key.array = ["an", "array"]
|
|
key.object = {
|
|
key.nested.boolean = false
|
|
}
|
|
}
|
|
|
|
wireplumber.section-merged.array.boolean = [ false ]
|
|
|
|
wireplumber.section-merged.array.int = [ 4 ]
|
|
|
|
wireplumber.section-merged.array.float = [ 4.44 ]
|
|
|
|
wireplumber.section-merged.array.string = [ "first" ]
|
|
|
|
wireplumber.section-merged.object = {
|
|
key.boolean = false
|
|
key.int = 6
|
|
}
|
|
|
|
wireplumber.section-merged.array.array = [ [true] ]
|
|
|
|
wireplumber.section-merged.array.object = [ { key1 = foo } ]
|
|
|
|
wireplumber.section-nested-merged = {
|
|
nested-object = {
|
|
key1 = true
|
|
}
|
|
nested-array = [1, 2]
|
|
}
|
|
|
|
wireplumber.section-override = {
|
|
"key1" = true;
|
|
}
|
|
|
|
wireplumber.section-nested-override = {
|
|
nested-object = {
|
|
key1 = true
|
|
}
|
|
}
|