luajitos

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

manifest.lua (644B)


      1 return {
      2     name = "taskbar",
      3     developer = "luajitos",
      4     version = "1.0.0",
      5     category = "all",
      6     description = "System taskbar with start menu and running applications",
      7     entry = "init.lua",
      8     type = "taskbar",
      9     hidden = true,  -- Hide from start menu
     10     autostart = true,  -- Launch on system startup
     11     autostartPriority = 2,  -- Launch after background
     12     permissions = {
     13         "scheduling",
     14         "export",
     15         "import",
     16         "draw",
     17         "system-all",
     18         "system-apps",
     19         "run",
     20         "ramdisk",
     21         "system",
     22         "system-hook"
     23     },
     24     allowedPaths = {
     25         "$/src/*"
     26     }
     27 }