(I've filed this on the
GitHub repo for completion-sake)
I'm running this plugin on OpenELEC, Raspberry Pi, controlled from TV via CEC.
This plugin is a great addition & something that has been sorely lacking - thanks for the contrib.
I've loaded the plugin to remap the default (otherwise pointless) teletext keys on the remote to take me to Movie Titles (red), TV Titles (green), Favourites (yellow) & Home (blue).
The config seems to be generated OK & creates the file:
~/.xbmc/userdata/keymaps/gen.xml
with the contents (as-is, no cr/lf):
Code:
<keymap><home><keyboard><key id="253">activatewindow(favourites)</key><key id="251">activatewindow(videos,movietitles)</key><key id="252">activatewindow(videos,tvshowtitles )</key><key id="254">activatewindow(home)</key></keyboard></home></keymap>
It seems to work OK for the 1st of the buttons pressed, but then defaults back to the default config after.
--- update ---
I've found the
following post (#79).
I've created a symlink of: `ln -sv gen.xml remote.xml`
& changed the config to reflect the following:
Code:
<keymap>
<!--
<home>
<keyboard>
<key id="251">activatewindow(videos,movietitles)</key>
<key id="252">activatewindow(videos,tvshowtitles)</key>
<key id="253">activatewindow(favourites)</key>
<key id="254">activatewindow(home)</key>
</keyboard>
</home>
-->
<global>
<remote>
<red>activatewindow(videos,movietitles)</red>
<green>activatewindow(videos,tvshowtitles)</green>
<yellow>activatewindow(favourites)</yellow>
<blue>activatewindow(home)</blue>
</remote>
</global>
</keymap>
After reboot it seems to function OK.