• Hi! Yes, this should be possible. Each app that's loaded by the launcher has a sortorder field, and when all the apps are loaded they are sorted by that field.

    You can list all apps with require("Storage").list(/.info$/) - so, suppose you want to make the stopwatch go right at the start, you can do:

    >var j  = require("Storage").readJSON("swatch.info")
    ={
      id: "swatch",
      name: "Stopwatch",
      src: "swatch.app.js",
      icon: "swatch.img",
      version: "0.07",
      files: "swatch.info,swatch.app.js,swatch.img"
     }
    >j.sortorder=-100
    =-100
    >require("Storage").writeJSON("swatch.info",j)
    

    This could definitely be added to the app manager - if only by re-writing all the app.info files with sortorder=index_you_want

About

Avatar for Gordon @Gordon started