From 4ed5e30d9d92cfbb623923f08ca382f190491715 Mon Sep 17 00:00:00 2001
From: George Kiagiadakis <george.kiagiadakis@collabora.com>
Date: Fri, 28 Jun 2019 13:32:45 +0300
Subject: [PATCH] config: enhance the configuration file with comments

---
 src/wireplumber.conf | 24 ++++++++++++++++++++++--
 1 file changed, 22 insertions(+), 2 deletions(-)

diff --git a/src/wireplumber.conf b/src/wireplumber.conf
index 6fb566de..2fef0590 100644
--- a/src/wireplumber.conf
+++ b/src/wireplumber.conf
@@ -1,6 +1,26 @@
+# Basic pipewire integration - do not remove
 load-module C libwireplumber-module-pipewire
+
+# Grants access to security confined clients
+load-module C libwireplumber-module-client-permissions
+
+# Endpoint implementation for standard audio devices
+# using software conversions, mixing and volume controls
 load-module C libwireplumber-module-pw-audio-softdsp-endpoint
+
+# Endpoint that provides high-level volume controls for the AGL mixer
+load-module C libwireplumber-module-mixer
+
+# Monitors the ALSA devices that are discovered via udev
+# and creates softdsp-endopints for each one of them
 load-module C libwireplumber-module-pw-alsa-udev
+
+# Implements linking clients to devices and maintains
+# information about the devices to be used.
+# If you want to override the default audio devices,
+# comment the first line and uncomment the lines below
 load-module C libwireplumber-module-simple-policy
-load-module C libwireplumber-module-mixer
-load-module C libwireplumber-module-client-permissions
+#load-module C libwireplumber-module-simple-policy {
+#  "default-playback-device": <"hw:0,0">,
+#  "default-capture-device": <"hw:0,0">
+#}
-- 
GitLab