Skip to content

Commit

Permalink
bugfix: mute shortcut used key combos thats affected by Swap command …
Browse files Browse the repository at this point in the history
…and option property
  • Loading branch information
MSzturc committed May 11, 2020
1 parent e69acc1 commit 88c5dc6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ACPI/SSDT-KBRD.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@ DefinitionBlock("", "SSDT", 2, "T460", "KBRD", 0)
// Toggle Mute Microphone LED
If ((LED1 == Zero))
{
// ALT + F20
Notify (\_SB.PCI0.LPC.KBD, 0x0138)
// Right Shift + F20
Notify (\_SB.PCI0.LPC.KBD, 0x0136)
Notify (\_SB.PCI0.LPC.KBD, 0x036b)
Notify (\_SB.PCI0.LPC.KBD, 0x01b8)
Notify (\_SB.PCI0.LPC.KBD, 0x01b6)

// 0x02 = Enable LED
\_SB.PCI0.LPC_.EC.HKEY.MMTS (0x02)
LED1 = One
}
Else
{
// STRG + F20
Notify (\_SB.PCI0.LPC.KBD, 0x011d)
// Left Shift + F20
Notify (\_SB.PCI0.LPC.KBD, 0x012a)
Notify (\_SB.PCI0.LPC.KBD, 0x036b)
Notify (\_SB.PCI0.LPC.KBD, 0x019d)
Notify (\_SB.PCI0.LPC.KBD, 0x01aa)

// 0x00 = Disable LED
\_SB.PCI0.LPC_.EC.HKEY.MMTS (Zero)
Expand Down
Binary file modified EFI/OC/ACPI/SSDT-KBRD.aml
Binary file not shown.

0 comments on commit 88c5dc6

Please sign in to comment.