Archive:Alternative keymaps for Boxee Box remote

From Official Kodi Wiki
Revision as of 02:19, 8 January 2012 by Ned Scott (talk | contribs)
Jump to navigation Jump to search

Simulates Apple remote on front face. Makes the front escape button do back instead of PreviousMenu (and Stop on FullScreenVideo), makes up/down into volume controls when on FullScreenVideo, and makes Period (.) toggle FullScreen.

Cut and paste the following into a new text document and save as keyboard.xml and place in userdata/keymaps/

<keymap>
  <global>
    <keyboard>
      <escape>Back</escape>
      <period>FullScreen</period>
    </keyboard>
  </global>
  <FullscreenVideo>
    <keyboard>
      <period>FullScreen</period>
      <comma>StepBack</comma>
      <up>VolumeUp</up>
      <down>VolumeDown</down>
      <escape>Stop</escape>
    </keyboard>
  </FullscreenVideo>
</keymap>