Wetek Core - turn off with power button

  • Is it possible to change the behaviour of the power button on the wetek core? Now when you press it, the shutdown dialog appears what is strange as you still have to use the remote to turn off the box. Better should be to shutdown the Wetek Core when pushing the button,

  • Create a keymap (or use the keymap editor addon) and assign the ShutDown() function to the power button - the Kodi default is ActivateWindow(ShutdownMenu)

    Code
    <keymap>
      <global>
        <keyboard>
          <power>ShutDown()</power>
        </keyboard>
      </global>
    </keymap>

    see also Keymap - Official Kodi Wiki

    so long,

    Hias