Skip to content

Instantly share code, notes, and snippets.

@slowpeek
Last active January 14, 2024 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slowpeek/50b5123d23b038d5b06b1452057be0c2 to your computer and use it in GitHub Desktop.
Save slowpeek/50b5123d23b038d5b06b1452057be0c2 to your computer and use it in GitHub Desktop.
Kodi remote control mod for Nokia 8000
<?xml version="1.0" encoding="UTF-8"?>
<!--
MIT license (c) 2024 https://github.com/slowpeek
Homepage: https://gist.github.com/slowpeek/50b5123d23b038d5b06b1452057be0c2
--
Kodi remote control mod for Nokia 8000
- disable "green" (Videos), "yellow" (Music), "blue" (Pictures)
- in PVR mode make "red" toggle PVROSDChannels (instead of open TVChannels)
- map ">>" to step forward
- map "<<" to step back
Colored buttons are modded for use in the dark:
- "red": TV channels (toggle in PVR mode)
- others: turn the backlight on
-->
<keymap>
<global>
<keyboard>
<green>noop</green>
<yellow>noop</yellow>
<blue>noop</blue>
<fastforward>StepForward</fastforward>
<rewind>StepBack</rewind>
</keyboard>
</global>
<PVROSDChannels>
<keyboard>
<red>Close</red>
</keyboard>
</PVROSDChannels>
<FullscreenLiveTV>
<keyboard>
<red>ActivateWindow(PVROSDChannels)</red>
</keyboard>
</FullscreenLiveTV>
</keymap>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment