luajitos

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

manifest.lua (573B)


      1 return {
      2     name = "shell",
      3     pretty = "Terminal",
      4     developer = "luajitos",
      5     version = "0.0.1",
      6     category = "System",
      7     description = "LuajitOS Shell Terminal",
      8     entry = "shell.lua",
      9     type = "gui",
     10     permissions = {
     11         "filesystem",
     12         "scheduling",
     13         "export",
     14         "import",
     15         "draw",
     16         "fullscreen",
     17         "run",
     18         "ramdisk",
     19         "load",
     20         "imaging",
     21         "set-path"
     22     },
     23     allowedPaths = {
     24         "/apps/*",
     25         "/os/*",
     26         "/tmp/*",
     27         "/sys/*",
     28         "/scripts/*"
     29     }
     30 }