Update README.md

This commit is contained in:
imarkoff
2023-02-21 20:33:50 +02:00
parent 070986c1a7
commit 63f3ac4aee

View File

@@ -55,9 +55,12 @@ python install.py
6. Select shell theme you want. 6. Select shell theme you want.
## Installation tweaks ## Installation tweaks
#### Install default color #### Install default color
You can install several themes in one string: `python install.py --red --green --blue`
| Option | Theme mode (optional) | Description | | Option | Theme mode (optional) | Description |
| ------------ | ------------ | ------------ | |---------------|-----------------------|----------------------------------------------------------|
| -A, --all | | Install all available accent colors. Light & dark mode. | | -A, --all | | Install all available accent colors. Light & dark mode. |
| --red | | red theme only | | --red | | red theme only |
| --pink | | pink theme only | | --pink | | pink theme only |
@@ -66,20 +69,25 @@ python install.py
| --green | | green theme only | | --green | | green theme only |
| --yellow | | pink theme only | | --yellow | | pink theme only |
| --gray | | gray theme only | | --gray | | gray theme only |
#### Install custom color #### Install custom color
| Option | Hue degree | Theme name (optional) | Theme mode (optional) | Description | | Option | Hue degree | Secondary option (optional) | Description |
| ------------ | ------------ | ------------ | ------------ | ------------ | |--------|------------|-----------------------------|------------------------------------------|
| --hue | | | |Generate theme from Hue prompt [0 - 360] | | --hue | (0 - 360) | | Generate theme from Hue prompt [0 - 360] |
#### Theme mode | | | --name=NAME | Custom theme name |
#### Optional theme tweaks
| Option | Secondary option | Description | | Option | Secondary option | Description |
| ------------ | ------------ | ------------ | |---------|------------------|------------------------------------------------------------|
| | light | light theme only | | --mode= | light / dark | light / dark theme only |
| | dark | dark theme only | | --sat= | (0 - 250)% | custom color saturation (<100% - reduce, >100% - increase) |
#### Examples #### Examples
| Command | Description | | Command | Description |
| ------------ | ------------ | |------------------------------------------------|----------------------------------------------------------------------|
| -A | Install all accent colors with light & dark mode | | -A | Install all accent colors with light & dark mode |
| --all dark | Install all accent colors with dark mode only | | --all --mode dark | Install all accent colors with dark mode only |
| --purple light | Install purple accent color with light mode only | | --purple --mode=light | Install purple accent color with light mode only |
| --hue 180 | Install hue=180 accent color with light & dark mode | | --hue 150 --name coldgreen | Install custom coldgreen accent color, light & dark mode |
| --hue 145 coldgreen dark | Install hue=145 coldgreen accent color with dark mode only | | --red --green --sat=70 | red, green accent colors, 70% of the stock saturation |
| --hue=200 --name=grayblue --sat=50 --mode=dark | custom grayblue accent color, 50% of the stock saturation, dark mode |