[Beta] Patchbox OS Bookworm ARM64 2024-04-04

I got the same, found a workaround.

It looks like a bug – the service handler for the new admidiminder service expects there to be an explicit config parameter in the module’s patchbox-module.json. It looks like this was done properly for the orac module, but missing in the puredata module.

Edit /usr/local/patchbox-modules/puredata/patchbox-module.json and replace the line with

        "amidiminder.service",

with

        {
            "service": "amidiminder.service",
            "config": "blah"
        }

My full file now looks like this:

{
    "name": "puredata",
    "version": "1.0.1",
    "description": "PureData module",
    "author": "blokas-community",
    "launch_mode": "list",
    "depends_on": [
        "jack.service",
        "pisound-ctl.service",
        "touchosc2midi.service",
        {
            "service": "amidiminder.service",
            "config": "blah"
        }
    ],
    "scripts": {
        "install": "install.sh",
        "launch": "launch.sh",
        "list": "list.sh",
        "stop": "stop.sh"
    }
}
1 Like