init.lua 576 B

123456789101112131415161718192021222324252627
  1. return {
  2. tag = 'modules',
  3. summary = 'Provides information about the current operating system and platform.',
  4. description = [[
  5. The `lovr.system` provides information about the current platform and hardware.
  6. It also interfaces with the desktop window and window input.
  7. ]],
  8. sections = {
  9. {
  10. name = 'System Information',
  11. tag = 'system-info'
  12. },
  13. {
  14. name = 'Keyboard',
  15. tag = 'system-keyboard'
  16. },
  17. {
  18. name = 'Mouse',
  19. tag = 'system-mouse'
  20. },
  21. {
  22. name = 'Window',
  23. tag = 'system-window'
  24. }
  25. }
  26. }