this repo has no description
0
fork

Configure Feed

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

update documentation

+7 -1
+7 -1
readme.md
··· 36 36 auto-terminal-profile update-profile 37 37 ``` 38 38 39 - To sync the Terminal profile to the current macOS appearance mode when Terminal app is opened, you can add that line to your shell startup script (e.g. `.zshrc`), but it will increase the startup time of new shell sessions. 39 + To sync the Terminal profile to the current macOS appearance mode when Terminal app is opened, you can add that line to your shell startup script (e.g. `.zshrc`), but it will increase the startup time of new shell sessions: 40 + 41 + ```zsh 42 + if [ "$TERM_PROGRAM" = "Apple_Terminal" ]; then 43 + auto-terminal-profile update-profile 44 + fi 45 + ``` 40 46 41 47 ### Disable automatic profile switching 42 48