···11# `terminal-profile`
2233-Manage macOS Terminal.app profile
33+Node.js library for managing the macOS Terminal.app’s profile (aka theme)
4455## Install
66···23232424## API
25252626-### `setTerminalProfile(profile)`
2626+### `setTerminalProfile`
27272828-Update all of Terminal’s windows and tabs to the `profile` profile.
2828+```typescript
2929+function setTerminalProfile(profile: string): Promise<void>;
3030+```
29313030-### `setTerminalDefaultProfile(profile)`
3232+Update all of Terminal’s windows and tabs to the `profile` profile
31333232-Update Terminal’s default profile to `profile`.
3434+### `setTerminalDefaultProfile`
3535+3636+```typescript
3737+function setTerminalDefaultProfile(profile: string): Promise<void>;
3838+```
3939+4040+Update Terminal’s default profile to `profile`
33413442## Acknowledgements
3543···3846## Related
39474048- [auto-terminal-profile](https://github.com/ptrkcsk/auto-terminal-profile) - Automatically switch the macOS Terminal profile based on the system-wide dark / light appearance mode
4949+5050+## Acknowledgements
5151+5252+Thanks to [Jimmy Bosse](https://github.com/jbosse) for his [Stack Overflow answer](https://stackoverflow.com/a/66080297/4411309)