parent
23e1bb9a7b
commit
a064a01ce3
|
|
@ -25,14 +25,19 @@ export BASH_IT_THEME="atomic"
|
||||||
### Automatically via terminal
|
### Automatically via terminal
|
||||||
|
|
||||||
1. You can install the theme automatically using the `sed` command from your Linux or OSX Terminal.
|
1. You can install the theme automatically using the `sed` command from your Linux or OSX Terminal.
|
||||||
2. For installation on windows you should use [`Git-Bash`](https://git-for-windows.github.io/) or make sure the terminal emulator you use (ej: cygwin, mintty, etc) has the `sed` command installed.
|
2. On macOS, the ~/.bash_profile is used, not the ~/.bashrc.
|
||||||
|
3. For installation on windows you should use [`Git-Bash`](https://git-for-windows.github.io/) or make sure the terminal emulator you use (ej: cygwin, mintty, etc) has the `sed` command installed.
|
||||||
Command to execute:
|
|
||||||
|
|
||||||
|
Command to execute For Windows and Linux:
|
||||||
```bash
|
```bash
|
||||||
# Set the "atomic" theme replacing the theme you are using of bash-it
|
# Set the "atomic" theme replacing the theme you are using of bash-it
|
||||||
sed -i 's/'"$BASH_IT_THEME"'/atomic/g' ~/.bashrc
|
sed -i 's/'"$BASH_IT_THEME"'/atomic/g' ~/.bashrc
|
||||||
```
|
```
|
||||||
|
Command to execute for macOS:
|
||||||
|
```bash
|
||||||
|
# Set the "atomic" theme replacing the theme you are using of bash-it
|
||||||
|
sed -i '' 's/'"$BASH_IT_THEME"'/atomic/g' ~/.bash_profile
|
||||||
|
```
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue