this repo has no description
0
fork

Configure Feed

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

improve readme

+14 -15
+14 -15
readme.md
··· 8 8 npm install terminal-profile 9 9 ``` 10 10 11 - ## Usage 12 - 13 - ```javascript 14 - import { 15 - setTerminalDefaultProfile, 16 - setTerminalProfile, 17 - } from "terminal-profile"; 18 - 19 - await setTerminalProfile("One Dark"); 20 - 21 - await setTerminalDefaultProfile("One Light"); 22 - ``` 23 - 24 11 ## API 25 12 26 - ### `setTerminalProfile` 13 + ### `setTerminalProfile()` 27 14 28 15 ```typescript 29 16 function setTerminalProfile(profile: string): Promise<void>; ··· 31 18 32 19 Update all of Terminal’s windows and tabs to the `profile` profile 33 20 34 - ### `setTerminalDefaultProfile` 21 + ```javascript 22 + import { setTerminalProfile } from "terminal-profile"; 23 + 24 + await setTerminalProfile("One Dark"); 25 + ``` 26 + 27 + ### `setTerminalDefaultProfile()` 35 28 36 29 ```typescript 37 30 function setTerminalDefaultProfile(profile: string): Promise<void>; 38 31 ``` 39 32 40 33 Update Terminal’s default profile to `profile` 34 + 35 + ```javascript 36 + import { setTerminalDefaultProfile } from "terminal-profile"; 37 + 38 + await setTerminalDefaultProfile("One Light"); 39 + ``` 41 40 42 41 ## Related 43 42