umediayvr / ulauncher

Launch applications versioned by uver
MIT License
1 stars 2 forks source link

External configuration #25

Open paulondc opened 7 years ago

paulondc commented 7 years ago

Provide a way to read the configuration/env from an addon/app in ulauncher configs. this configuration should be optional

launcher:

{
    "config": "<APP_LOCATION>/config.json",
    "addons": {
        "foo": {
            "config": "<ADDON_LOCATION>/config.json",
            "env": {
                //...
            }
        }

    }
}

"config.json"

{
    "version": "10.1.0",
    "description": "bla bla bla",
    "env": {
        //... should be relative to the config location
    }
}