summaryrefslogtreecommitdiff
path: root/wireplumber
diff options
context:
space:
mode:
Diffstat (limited to 'wireplumber')
-rw-r--r--wireplumber/main.lua.d/51-custom.lua22
-rw-r--r--wireplumber/wireplumber.conf.d/51-id4.conf17
-rw-r--r--wireplumber/wireplumber.conf.d/51-volt4.conf17
-rw-r--r--wireplumber/wireplumber.conf.d/alsa-vm.conf17
4 files changed, 0 insertions, 73 deletions
diff --git a/wireplumber/main.lua.d/51-custom.lua b/wireplumber/main.lua.d/51-custom.lua
deleted file mode 100644
index 2340e94..0000000
--- a/wireplumber/main.lua.d/51-custom.lua
+++ /dev/null
@@ -1,22 +0,0 @@
-table.insert(alsa_monitor.rules,
- {
- -- Rules for matching a device or node. It is an array of
- -- properties that all need to match the regexp. If any of the
- -- matches work, the actions are executed for the object.
- matches = {
- {
- { "device.name", "matches", "alsa_card.usb-Audient_Audient_iD4-00" },
- },
- },
- -- Apply properties on the matched object.
- apply_properties = {
- -- Use UCM instead of profile when available. Can be
- -- disabled to skip trying to use the UCM profile.
- ["api.alsa.use-ucm"] = false,
-
- -- The default active profile. Is by default set to "Off".
- ["device.profile"] = "Pro Audio",
- },
- }
-)
-
diff --git a/wireplumber/wireplumber.conf.d/51-id4.conf b/wireplumber/wireplumber.conf.d/51-id4.conf
deleted file mode 100644
index c01df40..0000000
--- a/wireplumber/wireplumber.conf.d/51-id4.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-monitor.alsa.rules = [
- {
- matches = [
- {
- device.name = "alsa_card.usb-Audient_Audient_iD4-00"
- }
- ]
- actions = {
- update-props = {
- api.alsa.use-acp = false,
- device.profile = "pro-audio",
- api.acp.auto-profile = false,
- api.acp.auto-port = false
- }
- }
- }
-]
diff --git a/wireplumber/wireplumber.conf.d/51-volt4.conf b/wireplumber/wireplumber.conf.d/51-volt4.conf
deleted file mode 100644
index 0c03252..0000000
--- a/wireplumber/wireplumber.conf.d/51-volt4.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-monitor.alsa.rules = [
- {
- matches = [
- {
- device.name = "alsa_card.usb-Universal_Audio_Volt_4_22282055004772-00"
- }
- ]
- actions = {
- update-props = {
- api.alsa.use-acp = false,
- device.profile = "pro-audio",
- api.acp.auto-profile = false,
- api.acp.auto-port = false
- }
- }
- }
-]
diff --git a/wireplumber/wireplumber.conf.d/alsa-vm.conf b/wireplumber/wireplumber.conf.d/alsa-vm.conf
deleted file mode 100644
index 22ca815..0000000
--- a/wireplumber/wireplumber.conf.d/alsa-vm.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-# ALSA node property overrides for HDMI output
-
-monitor.alsa.rules = [
- # Generic PCI cards on any VM type
- {
- matches = [
- { node.name = "~alsa_output.*" }
- ]
- actions = {
- update-props = {
- audio.format = "S16LE"
- audio.channels = 2
- audio.position = "FR,FL"
- }
- }
- }
-]