summaryrefslogtreecommitdiff
path: root/.config/wireplumber/main.lua.d/52-soundblaster-input-disable.lua
blob: 825c7d9f5de9cc6c7b6ed583fa92d9acca1a0a1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
rule = {
   matches = {
	  {
		 { "node.name", "equals", "alsa_input.pci-0000_29_00.0.analog-stereo"},
      },
   },
   apply_properties = {
	  ["node.disabled"] = true,
   },
}

table.insert(alsa_monitor.rules,rule)