Jump to content
Flirc Forums

XBMC + FLIRC + PI


chris3000

Recommended Posts

It looks like there isn't a default keyboard button for bringing up the favourites menu, only moving items in it.

 

If you're comfortable changing the XML file for XBMC you can add the functionality.

 

Here's the xml file that ships with xbmc: https://github.com/xbmc/xbmc/blob/master/system/keymaps/keyboard.xml

The letter "g" doesn't appear to be in use by XBMC when browsing so we can add it into the "global" part of the XML file

So find:

<keymap>
  <global>
    <keyboard>
      <p>Play</p>
      <q>Queue</q>
      <f>FastForward</f>

Then add in the favourites functionality:

<keymap>
  <global>
    <keyboard>
    <g>ActivateWindow(Favourites)</g>
     <p>Play</p>
     <q>Queue</q>
     <f>FastForward</f>

Save it, restart XBMC, map a key to "g" on flirc and it should work

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...