I'd like to run the command reload -b whenever a terminal opens in Visual Studio Code on a Mac. The accepted answer to a similar question gives a deprecated warning.
I've set my default profile (ZSH) and configured it as suggested in the docs, but the command still doesn't run.
Any help is much appreciated - thanks
My settings.json looks like:
   "terminal.integrated.defaultProfile.osx": "zsh",
    "terminal.integrated.defaultProfile.windows": "zsh",
    "terminal.integrated.profiles.osx": {
        "zsh (login)": {
            "path": "zsh",
            "args": [
                "reload -b"
            ]
        }
    },
