Kodi Community Forum

Full Version: Keyboard shortcut for Live TV channel Now/Next list
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a keyboard shortcut (while watching Live TV) for the current channel program listing which is usually accessed via the onscreen button shown below:

Image

Thanks
No, but feel free to change your keymap to add one. Its name is "PVROSDGuide".
(2017-03-22, 04:02)rpcameron Wrote: [ -> ]No, but feel free to change your keymap to add one. Its name is "PVROSDGuide".
Thanks for the information, searching for that in the keyboard.xml file shows that there is already an entry, but it's in the visualisation section, which is probably the wrong place for it:
Code:
<Visualisation>
  <keyboard>
    ------------
    <g>ActivateWindow(PVROSDGuide)</g>
    ------------
  </keyboard>
</Visualisation>

Adding it to the LiveTV and Radio sections works perfectly.
Code:
<FullscreenLiveTV>
  <keyboard>
    ------------
    <g>ActivateWindow(PVROSDGuide)</g>
  </keyboard>
</FullscreenLiveTV>

<FullscreenRadio>
  <keyboard>
    ------------
    <g>ActivateWindow(PVROSDGuide)</g>
  </keyboard>
</FullscreenRadio>