Last active
January 14, 2024 15:19
-
-
Save slowpeek/50b5123d23b038d5b06b1452057be0c2 to your computer and use it in GitHub Desktop.
Kodi remote control mod for Nokia 8000
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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