Jump to content

dodvip123

Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by dodvip123

  1. Also, brightness keys can be mapped to F14/F15 if your PS2 kexts allow for customization. For example, with my version of VoodooPS2Controller.kext, you can customize the mapping with ACPI. The following small SSDT can be used to map the Dell PS2 codes to F14/F15 instead of the codes normally used for brightness:

     

    Code (Text):
    // Custom ADB codes to change Dell brightness keys to F14/F15

    // some SSDTs use a different path than _SB.PCI0.LPCB.PS2K, so adjust accordingly

    DefinitionBlock ("", "SSDT", 2, "hack", "ps2k", 0)

    {

        External(\_SB.PCI0.LPCB.PS2K, DeviceObj)

        Scope (\_SB.PCI0.LPCB.PS2K)

        {

            Name(RMCF, Package()

            {

                "Keyboard", Package()

                {

                    "Custom ADB Map", Package()

                    {

                        Package(){},

                        "e005=6b",

                        "e006=71",

                    },

                },

            })

        }

    }

    //EOF

    - RehabMan

     

    Is this possible with this kext? i really don't want to use Fn for brightness, everything else already works on my keyboard.

  2. I have L2C ELAN device ( according to windows) . Driver works otherwise well but theres only one flaw. Tapping twice causes the trackpad to freeze. I know u don't support l2c but I just thought that maybe u should know. Let me know if theres something that would help.

    i have that issue too with the latest version, that's why i use v4.5 of the kext which works perfectly

  3. I think you might have ISO keyboard, so read my keyboard features thread and edit plist as needed for setting proper keyboard layout and it will work then.

     

    i read your reply considering i have a ISO keyboard. I changed this in the info.plist and now 3 finger left and right swipes are working, but not as back and forward. They do full screen swipes, like my 4 finger swipes. The relevant part of the plist:

     

    <key>3FingerSwipeDownAction</key>

    <integer>13</integer>
    <key>3FingerSwipeLeftAction</key>
    <integer>12</integer>
    <key>3FingerSwipeRightAction</key>
    <integer>11</integer>
    <key>3FingerSwipeUpAction</key>
    <integer>4</integer>
    <key>3FingerSwipes</key>
    <true/>
    <key>4FingerSwipeDownAction</key>
    <integer>8</integer>
    <key>4FingerSwipeLeftAction</key>
    <integer>7</integer>
    <key>4FingerSwipeRightAction</key>
    <integer>6</integer>
    <key>4FingerSwipeUpAction</key>
    <integer>10</integer>
    <key>4FingerSwipes</key>
    <true/>
     
    Is there any solution to this? Thanks in advance.
×
×
  • Create New...