bluez-monitor.conf Formatting/Punctuation Fixes

This commit is contained in:
jasker5183 2021-02-08 18:05:37 +00:00 committed by Wim Taymans
parent dc66df134b
commit 246f7bd77e

View file

@ -1,6 +1,7 @@
# bluez-monitor config file # Bluez monitor config file #
properties = { properties = {
# msbc is not expected to work on all headset + adapter combinations. # MSBC is not expected to work on all headset + adapter combinations.
#bluez5.msbc-support = true #bluez5.msbc-support = true
#bluez5.sbc-xq-support = true #bluez5.sbc-xq-support = true
@ -14,24 +15,24 @@ properties = {
# hfp_ag (HFP Audio Gateway) # hfp_ag (HFP Audio Gateway)
#bluez5.headset-roles = [ hsp_hs hsp_ag hfp_ag ] #bluez5.headset-roles = [ hsp_hs hsp_ag hfp_ag ]
# Enabled A2DP codecs (default: all) # Enabled A2DP codecs (default: all).
#bluez5.codecs = [ sbc aac ldac aptx aptx_hd ] #bluez5.codecs = [ sbc aac ldac aptx aptx_hd ]
} }
rules = [ rules = [
# an array of matches/actions to evaluate # An array of matches/actions to evaluate.
{ {
# rules for matching a device or node. It is an array of # Rules for matching a device or node. It is an array of
# properties that all need to match the regexp. If any of the # properties that all need to match the regexp. If any of the
# matches work, the actions are executed for the object. # matches work, the actions are executed for the object.
matches = [ matches = [
{ {
# this matches all cards # This matches all cards.
device.name = "~bluez_card.*" device.name = "~bluez_card.*"
} }
] ]
actions = { actions = {
# actions can update properties on the matched object. # Actions can update properties on the matched object.
update-props = { update-props = {
#device.nick = "My Device" #device.nick = "My Device"
} }
@ -40,11 +41,11 @@ rules = [
{ {
matches = [ matches = [
{ {
# matches all sinks # Matches all sinks.
node.name = "~bluez_input.*" node.name = "~bluez_input.*"
} }
{ {
# matches all sources # Matches all sources.
node.name = "~bluez_output.*" node.name = "~bluez_output.*"
} }
] ]