summaryrefslogtreecommitdiffstats
path: root/docs/ru-RU/config/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ru-RU/config/README.md')
-rw-r--r--docs/ru-RU/config/README.md38
1 files changed, 20 insertions, 18 deletions
diff --git a/docs/ru-RU/config/README.md b/docs/ru-RU/config/README.md
index 99c572692..201607943 100644
--- a/docs/ru-RU/config/README.md
+++ b/docs/ru-RU/config/README.md
@@ -112,13 +112,13 @@ prompt_order = [
## AWS
-The `aws` module shows the current AWS profile. This is based on the `AWS_PROFILE` env var.
+The `aws` module shows the current AWS region and profile. This is based on `AWS_REGION`, `AWS_DEFAULT_REGION`, and `AWS_PROFILE` env var with `~/.aws/config` file.
### Options
| Variable | Default | Description |
| ---------- | --------------- | ---------------------------------------------------------- |
-| `symbol` | `"☁️ "` | The symbol used before displaying the current AWS profile. |
+| `symbol` | `"☁️ "` | The symbol used before displaying the current AWS profile. |
| `style` | `"bold yellow"` | The style for the module. |
| `disabled` | `false` | Disables the `AWS` module. |
@@ -398,7 +398,7 @@ The `git_branch` module shows the active branch of the repo in your current dire
[git_branch]
symbol = "🌱 "
-truncation_length = "4"
+truncation_length = 4
truncation_symbol = ""
```
@@ -508,13 +508,14 @@ The `hostname` module shows the system hostname.
### Options
-| Variable | Default | Description |
-| ---------- | --------------------- | ---------------------------------------------------- |
-| `ssh_only` | `true` | Only show hostname when connected to an SSH session. |
-| `prefix` | `""` | Prefix to display immediately before the hostname. |
-| `suffix` | `""` | Suffix to display immediately after the hostname. |
-| `style` | `"bold dimmed green"` | The style for the module. |
-| `disabled` | `false` | Disables the `hostname` module. |
+| Variable | Default | Description |
+| ---------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
+| `ssh_only` | `true` | Only show hostname when connected to an SSH session. |
+| `prefix` | `""` | Prefix to display immediately before the hostname. |
+| `suffix` | `""` | Suffix to display immediately after the hostname. |
+| `trim_at` | `"."` | String that the hostname is cut off at, after the first match. `"."` will stop after the first dot. `""` will disable any truncation |
+| `style` | `"bold dimmed green"` | The style for the module. |
+| `disabled` | `false` | Disables the `hostname` module. |
### Example
@@ -525,6 +526,7 @@ The `hostname` module shows the system hostname.
ssh_only = false
prefix = "⟪"
suffix = "⟫"
+trim_at = ".companyname.com"
disabled = false
```
@@ -642,14 +644,14 @@ This module is disabled by default. To enable it, set `disabled` to `false` in y
### Options
-| Variable | Default | Description |
-| ----------------- | ------------------------ | ------------------------------------------------------------- |
-| `show_percentage` | `false` | Display memory usage as a percentage of the available memory. |
-| `show_swap` | when total swap non-zero | Display swap usage. |
-| `threshold` | `75` | Hide the memory usage unless it exceeds this percentage. |
-| `symbol` | `"🐏 "` | The symbol used before displaying the memory usage. |
-| `style` | `"bold dimmed white"` | The style for the module. |
-| `disabled` | `true` | Disables the `memory_usage` module. |
+| Variable | Default | Description |
+| ----------------- | --------------------- | ------------------------------------------------------------- |
+| `show_percentage` | `false` | Display memory usage as a percentage of the available memory. |
+| `show_swap` | `true` | Display swap usage if total swap is non-zero. |
+| `threshold` | `75` | Hide the memory usage unless it exceeds this percentage. |
+| `symbol` | `"🐏 "` | The symbol used before displaying the memory usage. |
+| `style` | `"bold dimmed white"` | The style for the module. |
+| `disabled` | `true` | Disables the `memory_usage` module. |
### Example