From 0649ba9aa6c39682a2d675f5d3df4d9f26a65406 Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Sat, 16 Mar 2024 10:46:54 +0200 Subject: [PATCH] docs: remove "policy" configuration doc page This is all part of the well-known settings now --- docs/rst/daemon/configuration.rst | 1 - docs/rst/daemon/configuration/meson.build | 1 - docs/rst/daemon/configuration/policy.rst | 51 ----------------------- 3 files changed, 53 deletions(-) delete mode 100644 docs/rst/daemon/configuration/policy.rst diff --git a/docs/rst/daemon/configuration.rst b/docs/rst/daemon/configuration.rst index 2ba4cfc1..177f4f25 100644 --- a/docs/rst/daemon/configuration.rst +++ b/docs/rst/daemon/configuration.rst @@ -25,7 +25,6 @@ the various options available. configuration/settings.rst configuration/alsa.rst configuration/bluetooth.rst - configuration/policy.rst configuration/access.rst configuration/locations.rst configuration/multi_instance.rst diff --git a/docs/rst/daemon/configuration/meson.build b/docs/rst/daemon/configuration/meson.build index a305dff4..d1154c96 100644 --- a/docs/rst/daemon/configuration/meson.build +++ b/docs/rst/daemon/configuration/meson.build @@ -7,7 +7,6 @@ sphinx_files += files( 'settings.rst', 'alsa.rst', 'bluetooth.rst', - 'policy.rst', 'access.rst', 'locations.rst', 'multi_instance.rst', diff --git a/docs/rst/daemon/configuration/policy.rst b/docs/rst/daemon/configuration/policy.rst deleted file mode 100644 index d2d98435..00000000 --- a/docs/rst/daemon/configuration/policy.rst +++ /dev/null @@ -1,51 +0,0 @@ -.. _config_policy: - -Policy Configuration -==================== - -wireplumber.conf.d/policy.conf -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -This file contains generic default policy properties that can be configured. - -* *Settings* - - Example: - - .. code-block:: - - wireplumber.properties = { - default-policy-move = true - } - - The above example will set the ``move`` policy property to ``true``. - - The list of supported properties are: - - .. code-block:: - - default-policy-move = true - - Moves session items when metadata ``target.node`` changes. - - .. code-block:: - - default-policy-follow = true - - Moves session items to the default device when it has changed. - - .. code-block:: - - default-policy-audio.no-dsp = false - - Set to ``true`` to disable channel splitting & merging on nodes and enable - passthrough of audio in the same format as the format of the device. Note that - this breaks JACK support; it is generally not recommended. - - .. code-block:: - - default-policy-duck.level = 0.3 - - How much to lower the volume of lower priority streams when ducking. Note that - this is a linear volume modifier (not cubic as in PulseAudio). -