Skip to content

Commit

Permalink
Fix audio input and output priorities for Legion Go (ublue-os#1436)
Browse files Browse the repository at this point in the history
Currently, there's an issue with the internal mic not being default in gamemode. Also, this gives priority to HDMI/external audio if Legion Go is attached to HDMI audio. Added 2 conf files to wireplumber.conf.d.
  • Loading branch information
thecalamityjoe87 authored Jul 30, 2024
1 parent 6bb47b7 commit d0b321e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
monitor.alsa.rules = [
{
matches = [
{
node.name = "alsa_output.pci-0000_c2_00.1.hdmi-stereo"
}
]
actions = {
update-props = {
priority.driver = 1100
priority.session = 1100
}
}
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
monitor.alsa.rules = [
{
matches = [
{
node.name = "alsa_input.pci-0000_c2_00.6.analog-stereo"
}
]
actions = {
update-props = {
priority.driver = 8901
priority.session = 8901
}
}
}
]

0 comments on commit d0b321e

Please sign in to comment.