Pico Launcher supports custom file associations for file extensions other than .nds.
By setting up a file association, files with the specified extension will be opened using the specified DS application.
The file path is passed via argv.
- Open
/_pico/settings.json. - If not present yet, add a
fileAssociationskey. - For each file association add a key inside the
fileAssociationskey. For example:With this setup"fileAssociations": { "xyz": { "appPath": "/path/to/xyz/app.nds" }, "gba": { "appPath": "/myGbaApp.nds" } }
.xyzfiles will be opened by/path/to/xyz/app.ndsand.gbafiles will be opened by/myGbaApp.nds.