···1818program
1919 .command('disable')
2020 .description(
2121- 'Disable automatic macOS Terminal profile switching based on system dark / light mode',
2121+ 'disable automatic macOS Terminal profile switching based on system dark / light mode',
2222 )
2323 .action(disable);
24242525program
2626 .command('enable')
2727 .description(
2828- 'Enable automatic macOS Terminal profile switching based on system dark / light mode',
2828+ 'enable automatic macOS Terminal profile switching based on system dark / light mode',
2929 )
3030 .option(
3131 '--dark-profile <profile>',
···4040for (const mode of ['dark', 'light']) {
4141 program
4242 .command(`set-${mode}-profile`)
4343- .description(`Set the Terminal profile to use in ${mode} mode`)
4343+ .description(`set the Terminal profile to use in ${mode} mode`)
4444 .argument('<profile>')
4545 .action((profile) => setModeProfile({mode, profile}));
4646}
47474848program
4949 .command('status')
5050- .description('Show status and configuration')
5050+ .description('show status and configuration')
5151 .action(status);
52525353program
5454 .command('update-profile')
5555 .description(
5656- 'Update the profile of currently running Terminal windows / tabs',
5656+ 'update the profile of currently running Terminal windows / tabs',
5757 )
5858 .action(updateProfile);
5959