this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

make casing consistent

+5 -5
+5 -5
cli.js
··· 18 18 program 19 19 .command('disable') 20 20 .description( 21 - 'Disable automatic macOS Terminal profile switching based on system dark / light mode', 21 + 'disable automatic macOS Terminal profile switching based on system dark / light mode', 22 22 ) 23 23 .action(disable); 24 24 25 25 program 26 26 .command('enable') 27 27 .description( 28 - 'Enable automatic macOS Terminal profile switching based on system dark / light mode', 28 + 'enable automatic macOS Terminal profile switching based on system dark / light mode', 29 29 ) 30 30 .option( 31 31 '--dark-profile <profile>', ··· 40 40 for (const mode of ['dark', 'light']) { 41 41 program 42 42 .command(`set-${mode}-profile`) 43 - .description(`Set the Terminal profile to use in ${mode} mode`) 43 + .description(`set the Terminal profile to use in ${mode} mode`) 44 44 .argument('<profile>') 45 45 .action((profile) => setModeProfile({mode, profile})); 46 46 } 47 47 48 48 program 49 49 .command('status') 50 - .description('Show status and configuration') 50 + .description('show status and configuration') 51 51 .action(status); 52 52 53 53 program 54 54 .command('update-profile') 55 55 .description( 56 - 'Update the profile of currently running Terminal windows / tabs', 56 + 'update the profile of currently running Terminal windows / tabs', 57 57 ) 58 58 .action(updateProfile); 59 59