this repo has no description
0
fork

Configure Feed

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

add documentation

+41 -1
documentation/demo.gif

This is a binary file and will not be displayed.

documentation/demo.mov

This is a binary file and will not be displayed.

+1 -1
package.json
··· 1 1 { 2 2 "name": "auto-terminal-profile", 3 3 "version": "0.0.0", 4 - "description": "Switch macOS terminal profile based on system dark / light mode", 4 + "description": "Automatically switch the macOS Terminal profile based on the system-wide dark / light appearance mode", 5 5 "keywords": [ 6 6 "macos", 7 7 "terminal",
+40
readme.md
··· 1 + # `auto-terminal-profile` 2 + 3 + Automatically switch the macOS Terminal profile based on the system-wide dark / light appearance mode 4 + 5 + ![auto-terminal-profile demonstration screen recording](./documentation/demo.gif) 6 + 7 + ## Installation 8 + 9 + ```sh 10 + npm install auto-terminal-profile 11 + ``` 12 + 13 + ## Usage 14 + 15 + ```sh 16 + auto-terminal-profile --help 17 + ``` 18 + 19 + ``` 20 + Usage: auto-terminal-profile [options] [command] 21 + 22 + Automatically switch the macOS Terminal profile based on the system-wide dark / light appearance mode 23 + 24 + Options: 25 + -V, --version output the version number 26 + -h, --help display help for command 27 + 28 + Commands: 29 + disable Disable automatic macOS Terminal profile switching based on system dark / light mode 30 + enable [options] Enable automatic macOS Terminal profile switching based on system dark / light mode 31 + set-dark-profile <profile> Set the Terminal profile to use in dark mode 32 + set-light-profile <profile> Set the Terminal profile to use in light mode 33 + status Show status and configuration 34 + update-profile Update the profile of currently running Terminal windows / tabs 35 + help [command] display help for command 36 + ``` 37 + 38 + ## Acknowledgements 39 + 40 + Thanks to [Fatih Arslan](https://github.com/fatih) for his article [*Automatic dark mode for terminal applications*](https://arslan.io/2021/02/15/automatic-dark-mode-for-terminal-applications/) and [Bouke van der Bijl](https://github.com/bouk) for his project [dark-mode-notify](https://github.com/bouk/dark-mode-notify), which this project uses