Rasplex RemotePi Keymap (Rebind a key)

Hello

I have following Setup:

I actually try to Rebind keys from this Remote.

<keymap>
   <global>
      <remote>
      <KEY_SUBTITLE>system.exec("/storage/.config/hyperion_plex_aktivieren.sh")</KEY_SUBTITLE>
      <KEY_NUMERIC_0>system.exec("/storage/.config/hyperion_grabber_aktivieren.sh")</KEY_NUMERIC_0>
      <KEY_AUDIO>system.exec("/storage/.config/hyperion_beenden.sh")</KEY_AUDIO>
      </remote>
   </global>
</keymap>

this is my keymap.xml (or remote.xml) (try both)

i put this in:

/storage/.plexht/userdata/keymaps

But Rasplex ignore my setting. The Buttons still the same as before…

How can i Rebind or Map a button from this Remote to Rasplex?

thank you very much

if you run for example “/storage/.config/hyperion_plex_aktivieren.sh” from ssh does it works?

i’m already solved it…

had to make an lircmap.xml in /storage/.plexht/userdata

<lircmap>
   <remote device="devinput">
      <red>KEY_SUBTITLE</red>
      <green>KEY_NUMERIC_0</green>
      <yellow>KEY_AUDIO</yellow>
   </remote>
</lircmap>

and for rasplex the execute command has to be XMBC…

<keymap>
   <global>
      <remote>
         <red>XBMC.system.exec("/storage/.config/hyperion_plex_aktivieren.sh")</red>
         <green>XBMC.system.exec("/storage/.config/hyperion_grabber_aktivieren.sh")</green>
         <yellow>XBMC.system.exec("/storage/.config/hyperion_beenden.sh")</yellow>
      </remote>
   </global>
</keymap>

so now it works how i want…