this repo has no description
0
fork

Configure Feed

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

format

+4 -4
+4 -4
cli.js
··· 22 22 'Disable automatic macOS Terminal profile switching based on system dark / light mode', 23 23 ) 24 24 .action(async () => { 25 - await disableAutomaticSwitching() 25 + await disableAutomaticSwitching(); 26 26 27 - console.log('Automatic switching disabled') 27 + console.log('Automatic switching disabled'); 28 28 }); 29 29 30 30 program ··· 58 58 59 59 await enableAutomaticSwitching(); 60 60 61 - console.log('Automatic switching enabled') 61 + console.log('Automatic switching enabled'); 62 62 }); 63 63 64 64 for (const mode of ['dark', 'light']) { ··· 69 69 .action((profile) => { 70 70 config[`${mode}Profile`] = profile; 71 71 72 - console.log(`${mode} mode profile set to '${profile}'`) 72 + console.log(`${mode} mode profile set to '${profile}'`); 73 73 }); 74 74 } 75 75