keyboard.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "Keyboard Generic",
  3. "idmatcher": "Keyboard.*",
  4. "mapping":
  5. {
  6. // standard navigation, we allow num and shift modifiers
  7. "(Num\\+|Shift\\+)?Left": "left",
  8. "(Num\\+|Shift\\+)?Right": "right",
  9. "(Num\\+|Shift\\+)?Up": "up",
  10. "(Num\\+|Shift\\+)?Down": "down",
  11. "(Num\\+)?(Return|Enter|Space)": "enter",
  12. "(Esc|Backspace)": "back",
  13. // map Num+X and Shift+X to X. This allows normal number input
  14. "(?:Num\\+|Shift\\+)?([0-9])": "%1",
  15. // map Shift+Letter to action jump+letter
  16. "Shift\\+([A-Z])": "jump+%1",
  17. "P": "play_pause",
  18. "Ctrl\\+P": "pause",
  19. "X": "stop",
  20. "B": "back",
  21. "H": "home",
  22. "A": "cycle_audio",
  23. "Ctrl\\+A": "cycle_audio_back",
  24. "L": "cycle_subtitles",
  25. "Ctrl\\+L": "cycle_subtitles_back",
  26. "S": "toggle_subtitles",
  27. "Alt\\+A": "increase_audio_delay",
  28. "Alt+Shift\\+A": "decrease_audio_delay",
  29. "Alt\\+S": "increase_subtitles_delay",
  30. "Alt\\+Shift\\+S": "decrease_subtitles_delay",
  31. // application shortcuts
  32. "Ctrl\\+F": "host:fullscreen",
  33. "Ctrl\\+Q": "host:close",
  34. "Ctrl\\+Shift\\+R": "host:reload",
  35. "Ctrl\\+Shift\\+D": "host:toggleDebug",
  36. // debug command to crash the host. for testing
  37. "Ctrl\\+Alt\\+Shift\\+F1": "host:crash!"
  38. }
  39. }