shell-os_app.lua 615 B

123456789101112131415161718192021
  1. laptop.register_app("shell", {
  2. app_name = "Shell",
  3. app_info = "CS-BOS Graphic Shell",
  4. fullscreen = true,
  5. app_icon = "laptop_????.png",
  6. os_min_version = '1.00',
  7. os_max_version = "4.99",
  8. formspec_func = function(...)
  9. --re-use the default launcher screen
  10. return laptop.apps["launcher"].formspec_func(...)
  11. end,
  12. receive_fields_func = function(...)
  13. --re-use the default launcher processing
  14. return laptop.apps["launcher"].receive_fields_func(...)
  15. end,
  16. appwindow_formspec_func = function(...)
  17. --re-use the default launcher theming
  18. return laptop.apps["launcher"].appwindow_formspec_func(...)
  19. end,
  20. })