From 42bad3d8307584c38be41404a84682841d1daa61 Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Mon, 8 Dec 2025 19:26:15 +0100 Subject: init --- .../51-camera-microphone-input-rename.conf | 15 +++++++++++++++ .../51-soundblaster-output-rename.conf | 16 ++++++++++++++++ .../51-starshipmatisse-output-rename.conf | 18 ++++++++++++++++++ .../52-soundblaster-input-disable.conf | 15 +++++++++++++++ .../52-starshipmatisse-input-disable.conf | 15 +++++++++++++++ 5 files changed, 79 insertions(+) create mode 100644 .config/wireplumber/wireplumber.conf.d/51-camera-microphone-input-rename.conf create mode 100644 .config/wireplumber/wireplumber.conf.d/51-soundblaster-output-rename.conf create mode 100644 .config/wireplumber/wireplumber.conf.d/51-starshipmatisse-output-rename.conf create mode 100644 .config/wireplumber/wireplumber.conf.d/52-soundblaster-input-disable.conf create mode 100644 .config/wireplumber/wireplumber.conf.d/52-starshipmatisse-input-disable.conf (limited to '.config/wireplumber/wireplumber.conf.d') diff --git a/.config/wireplumber/wireplumber.conf.d/51-camera-microphone-input-rename.conf b/.config/wireplumber/wireplumber.conf.d/51-camera-microphone-input-rename.conf new file mode 100644 index 0000000..8656458 --- /dev/null +++ b/.config/wireplumber/wireplumber.conf.d/51-camera-microphone-input-rename.conf @@ -0,0 +1,15 @@ +monitor.alsa.rules = [ + { + matches = [ + { + node.name = "alsa_input.usb-SunplusIT_Inc_FHD_Camera_Microphone_01.00.00-02.analog-stereo" + } + ] + actions = { + update-props = { + node.description = "Camera Microphone", + node.nick = "Camera Microphone" + } + } + } +] diff --git a/.config/wireplumber/wireplumber.conf.d/51-soundblaster-output-rename.conf b/.config/wireplumber/wireplumber.conf.d/51-soundblaster-output-rename.conf new file mode 100644 index 0000000..75dd728 --- /dev/null +++ b/.config/wireplumber/wireplumber.conf.d/51-soundblaster-output-rename.conf @@ -0,0 +1,16 @@ +monitor.alsa.rules = [ + { + matches = [ + { + node.name = "alsa_output.pci-0000_29_00.0.analog-stereo" + } + ] + actions = { + update-props = { + node.description = "Headphones", + node.nick = "Headphones" + } + } + } +] + diff --git a/.config/wireplumber/wireplumber.conf.d/51-starshipmatisse-output-rename.conf b/.config/wireplumber/wireplumber.conf.d/51-starshipmatisse-output-rename.conf new file mode 100644 index 0000000..a6c6697 --- /dev/null +++ b/.config/wireplumber/wireplumber.conf.d/51-starshipmatisse-output-rename.conf @@ -0,0 +1,18 @@ +monitor.alsa.rules = [ + { + matches = [ + { + node.name = "alsa_output.pci-0000_31_00.4.iec958-stereo" + } + ] + + actions = { + update-props = { + node.description = "Speakers", + node.nick = "Speakers" + } + } + } +] + + diff --git a/.config/wireplumber/wireplumber.conf.d/52-soundblaster-input-disable.conf b/.config/wireplumber/wireplumber.conf.d/52-soundblaster-input-disable.conf new file mode 100644 index 0000000..b36545c --- /dev/null +++ b/.config/wireplumber/wireplumber.conf.d/52-soundblaster-input-disable.conf @@ -0,0 +1,15 @@ +monitor.alsa.rules = [ + { + matches = [ + { + node.name = "alsa_input.pci-0000_29_00.0.analog-stereo" + } + ] + actions = { + update-props = { + node.disabled = true + } + } + } +] + diff --git a/.config/wireplumber/wireplumber.conf.d/52-starshipmatisse-input-disable.conf b/.config/wireplumber/wireplumber.conf.d/52-starshipmatisse-input-disable.conf new file mode 100644 index 0000000..86cdd32 --- /dev/null +++ b/.config/wireplumber/wireplumber.conf.d/52-starshipmatisse-input-disable.conf @@ -0,0 +1,15 @@ +monitor.alsa.rules = [ + { + matches = [ + { + node.name = "alsa_input.pci-0000_31_00.4.analog-stereo" + } + ] + actions = { + update-props = { + node.disabled = true + } + } + } +] + -- cgit v1.2.3