summaryrefslogtreecommitdiff
path: root/.config/wireplumber/main.lua.d/52-hdmi-card-disable.lua
blob: 63eb9e43c905bc13709263767dfc022925cb876a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
rule = {
   matches = {
	  {
		 { "device.name", "equals", "alsa_card.pci-0000_2f_00.1"},
      },
   },
   apply_properties = {
	  ["device.disabled"] = true,
   },
}

table.insert(alsa_monitor.rules,rule)