Archive:Alternative keymaps for Boxee Box remote: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
Line 12: Line 12:
;Keymap
;Keymap
:Cut and paste the following into a new text document and save as '''keyboard.xml''' and place in <code>[[userdata]]/keymaps/</code>
:Cut and paste the following into a new text document and save as '''keyboard.xml''' and place in <code>[[userdata]]/keymaps/</code>
<source lang="XML">
<syntaxhighlight lang="xml" enclose="div">
<keymap>
<keymap>
   <global>
   <global>
Line 28: Line 28:
   </FullscreenVideo>
   </FullscreenVideo>
</keymap>
</keymap>
</source>
</syntaxhighlight>


[[Category:Custom keymaps]]
[[Category:Custom keymaps]]

Revision as of 20:16, 25 July 2013

Alternative keymaps for the Boxee Box remote, as suggested by the community.

Keymap 1

What it does
  • Global
    • Escape button will do back instead of PreviousMenu
  • Full Screen video
    • Escape will stop video
    • Left will do SmallStepBack (-7s) instead of StepBack (-30s)
Keymap
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>
    </keyboard>
  </global>
  <FullscreenVideo>
    <keyboard>
      <up>VolumeUp</up>
      <down>VolumeDown</down>
      <left>SmallStepBack</left>
      <escape>Stop</escape>
    </keyboard>
  </FullscreenVideo>
</keymap>