luajitos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

manifest.lua (592B)


      1 return {
      2     name = "background";
      3     developer = "luajitos";
      4     version = "0.0.1";
      5     category = "all",
      6     description = "LuajitOS Desktop Background";
      7     entry = "background.lua";
      8     type = "background";
      9     hidden = true;  -- Hide from start menu
     10     autostart = true;  -- Launch on system startup
     11     autostartPriority = 1;  -- Launch first (background should be behind everything)
     12     permissions = {
     13         "ramdisk";  -- Need direct ramdisk access since SafeFS traverse is broken
     14         "draw";
     15         "background";
     16         "system-all";  -- Need to access sys.screen
     17     };
     18 }