mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
8 lines
242 B
JavaScript
8 lines
242 B
JavaScript
(function() {
|
|
var l = require("Storage").list(/\.info$/).map(app=>{
|
|
try { return require("Storage").readJSON(app); } catch (e) {}
|
|
}).find(app=>app.type=="launch");
|
|
if (l) load(l.src);
|
|
else E.showMessage("Launcher\nnot found");
|
|
})
|