Last active
August 8, 2018 10:24
-
-
Save nyboer/e1af648ebcaacba7ea962463867b9486 to your computer and use it in GitHub Desktop.
This allows users to add bluetooth audio sinks to pulseaudio for CHIP computers without a desktop manager.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This configuration file specifies the required security policies | |
for PulseAudio Bluetooth integration. --> | |
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" | |
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> | |
<busconfig> | |
<!-- ../system.conf have denied everything, so we just punch some holes --> | |
<policy user="pulse"> | |
<allow own="org.bluez"/> | |
<allow send_destination="org.bluez"/> | |
<allow send_interface="org.bluez.Agent1"/> | |
<allow send_interface="org.bluez.MediaEndpoint1"/> | |
<allow send_interface="org.bluez.MediaPlayer1"/> | |
<allow send_interface="org.bluez.ThermometerWatcher1"/> | |
<allow send_interface="org.bluez.AlertAgent1"/> | |
<allow send_interface="org.bluez.Profile1"/> | |
<allow send_interface="org.bluez.HeartRateWatcher1"/> | |
<allow send_interface="org.bluez.CyclingSpeedWatcher1"/> | |
<allow send_interface="org.bluez.GattCharacteristic1"/> | |
<allow send_interface="org.bluez.GattDescriptor1"/> | |
<allow send_interface="org.freedesktop.DBus.ObjectManager"/> | |
<allow send_interface="org.freedesktop.DBus.Properties"/> | |
</policy> | |
<policy at_console="true"> | |
<allow send_destination="org.bluez"/> | |
</policy> | |
<policy context="default"> | |
<deny send_destination="org.bluez"/> | |
</policy> | |
</busconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment