I made a quick script for mass installing URM into all of my RenPy games, because what says lazy like spending more time writing a quick script than it would take to just manually update my URMs and add it to games I forgot to already, but that's life. Figured I'd share it in case anyone else wants to be lazy.
Place the latest `0x52_URM.rpa` unzipped beside the script and run it with `python install_urm.py` and it will recursively check all folders beside the script if it's a RenPy game, if it is it will place URM into the /game/ folder for you.
Has arguments to change how it acts, by default it prompts for every overwrite, you can use -f to force overwrite, and -s to skip all overwrites. It also has a max depth limit, just in case you've got your games in a weird place like C:/ that way it doesnt try to search every folder on your PC, the default is a depth of 5 and can be changed with -m #
Layout like this:
Script is super simple and non minimized, so you can open it up and see exactly what it's doing, was going to pack it as an exe as well but figured that'd be rather sketchy to upload, but for anyone that wants to just doubleclick it you can compile it yourself with pyinstaller easily enough