os-js / osjs-client

OS.js Client Module
https://manual.os-js.org/
Other
31 stars 31 forks source link

Allow launchers from metadata.json #121

Open andersevenrud opened 4 years ago

andersevenrud commented 4 years ago

It might be useful to have a launchers property in the package metadata to allow customizing the launchers so you can have ex. multiple menu entries with different launch arguments.

{
  launchers: [{
    title: 'My Application'
  }, {
    title: 'My Application (with arguments)'
    args: ['foo']
  }]
}