diff --git a/README.md b/README.md index f1dd2648..bc458918 100644 --- a/README.md +++ b/README.md @@ -50,12 +50,12 @@ >日本語  - 简体中文繁體中文  - 繁體中文简体中文 
-

Compatibility First

-

Works on the most common shells on the most common operating systems. Use it everywhere!

+

Kompatibel

+

Läuft mit den beliebtesten Shells auf den beliebtesten Betriebssystemen. Überall einsetzbar!

-

Rust-Powered

-

Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible.

+

Antrieben von Rust

+

Bringt die branchenweit beste Geschwindigkeit und Sicherheit von Rust mit, um Deine Eingaben so schnell und zuverlässig wie nur möglich zu machen.

-

Customizable

-

Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be.

+

Individualisierbar

+

Jedes noch so kleine Detail kann nach Deinen Wünschen angepasst werden, um die Eingabeaufforderung so minimal oder funktionsreich zu gestalten, wie Du es möchtest.

@@ -28,11 +28,11 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors -### Quick Install +### Schnellinstallation -1. Install the **starship** binary: +1. Installiere die Binärversion von **starship**: - **[Download archives of precompiled binaries](https://github.com/starship/starship/releases)** if you don't use the platforms below. + **[Lade die vorkompilierte Binärversion herunter](https://github.com/starship/starship/releases)**, wenn du keine der unten gelisteten Plattformen verwendest. #### Homebrew @@ -42,7 +42,7 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors ``` - #### Rust (v1.33 or higher) + #### Rust (v1.33 oder neuer) ```sh $ cargo install starship @@ -51,14 +51,14 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors #### Arch Linux (AUR) - Starship is available on the AUR under the name `starship`. Install it with `yay` or your favorite AUR helper. + Starship ist via AUR unter dem Namen `starship` verfügbar. Installiere es mittels `yay` oder einem AUR-Helfer deiner Wahl. ```sh $ yay -S starship ``` - #### Nix (unstable) + #### Nix (instabil) ```sh $ nix-env --install starship @@ -71,12 +71,12 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors $ pkg install starship ``` -1. Add the init script to your shell's config file: +1. Füge das init-Skript zur Konfigurationsdatei deiner Shell hinzu: #### Bash - Add the following to the end of `~/.bashrc`: + Trage folgendes am Ende der `~/.bashrc` ein: ```sh # ~/.bashrc @@ -87,7 +87,7 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors #### Fish - Add the following to the end of `~/.config/fish/config.fish`: + Trage folgendes am Ende der `~/.config/fish/config.fish` ein: ```sh # ~/.config/fish/config.fish @@ -98,10 +98,22 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors #### Zsh - Add the following to the end of `~/.zshrc`: + Trage folgendes am Ende der `~/.zshrc` ein: ```sh # ~/.zshrc eval "$(starship init zsh)" ``` + + + #### Powershell + + Trage folgendes in das Powershell-Profil ($Profile) ein. Standardmäßig gespeichert unter: `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` auf Windows, oder `~/.config/powershell/Microsoft.PowerShell_profile.ps1` auf -Nix: + + ```sh + # notepad $PROFILE +# ~\Documents\PowerShell\Profile.ps1 + + Invoke-Expression (&starship init powershell) + ``` diff --git a/docs/de-DE/advanced-config/README.md b/docs/de-DE/advanced-config/README.md index d5d27031..37d94586 100644 --- a/docs/de-DE/advanced-config/README.md +++ b/docs/de-DE/advanced-config/README.md @@ -1,18 +1,18 @@ -# Advanced Configuration +# Erweiterte Konfiguration -While Starship is a versatile shell, sometimes you need to do more than edit `starship.toml` to get it to do certain things. This page details some of the more advanced configuration techniques used in starship. +Auch wenn Starship eine vielseitige Shell ist, reichen manche Konfigurationen in der `starship.toml` nicht aus, um erweiterte Einstellungen vorzunehmen. Diese Seite beschreibt einige fortgeschrittene Konfigurationen für Starship. -::: warning +::: Warnung -The configurations in this section are subject to change in future releases of Starship. +Die hier beschriebenen Konfigurationen werden sich mit kommenden Updates von Starship verändern. ::: -## Custom pre-prompt and pre-execution Commands in Bash +## Benutzerdefinierte Pre-Prompt- und Pre-Execution-Befehle in der Bash -Bash does not have a formal preexec/precmd framework like most other shells. Because of this, it is difficult to provide fully customizable hooks in `bash`. However, Starship does give you limited ability to insert your own functions into the prompt-rendering procedure: +Die Bash Shell hat, im Gegensatz zu vielen anderen Shells, kein konventionelles preexec/precmd Framework. Daher gestaltet es sich schwierig, vollständig anpassbare Hooks für `bash` anzubieten. Starship bietet daher die begrenzte Möglichkeit, eigene Funktionen in das prompt rendering Verfahren einzufügen: -- To run a custom function right before the prompt is drawn, define a new function and then assign its name to `starship_precmd_user_func`. For example, to draw a rocket before the prompt, you would do +- Um eine benutzerdefinierte Funktion kurz vor Anzeige der Eingabeaufforderung auszuführen, definiere eine neue Funktion und weise den Namen `starship_precmd_user_func` zu. Um beispielsweise eine Rakete anzuzeigen, bevor die Eingabeaufforderung erscheint, würde man folgendes tun ```bash function blastoff(){ @@ -21,45 +21,45 @@ function blastoff(){ starship_precmd_user_func="blastoff" ``` -- To run a custom function right before a command runs, you can use the [`DEBUG` trap mechanism](https://jichu4n.com/posts/debug-trap-and-prompt_command-in-bash/). However, you **must** trap the DEBUG signal *before* initializing Starship! Starship can preserve the value of the DEBUG trap, but if the trap is overwritten after starship starts up, some functionality will break. +- Um eine benutzerdefinierte Funktion direkt vor der Ausführung eines Befehls auszulösen, kann man den [`DEBUG` trap](https://jichu4n.com/posts/debug-trap-and-prompt_command-in-bash/) Mechanismus verwenden. Allerdings **muss** das DEBUG Signal *vor* der Initialisierung von Starship getrapped werden! Starship kann den Wert der DEBUG-trap speichern. Wenn der Wert der DEBUG-trap überschrieben wird nachdem Starship gestartet ist kann es zu Fehlern im Bezug auf die verwendete DEBUG-trap kommen. ```bash function blastoff(){ echo "🚀" } -trap blastoff DEBUG # Trap DEBUG *before* running starship +trap blastoff DEBUG # DEBUG-Trap *bevor* Starship läuft eval $(starship init bash) ``` -## Change Window Title +## Fenstertitel anpassen -Some shell prompts will automatically change the window title for you (e.g. to reflect your working directory). Fish even does it by default. Starship does not do this, but it's fairly straightforward to add this functionality to `bash` or `zsh`. +Manche shell prompts können den Fenstertitel ändern. Fish ist standardmäßig so konfiguriert. Starship ändert standardmäßig den Fenstertitel nicht, aber es ist sehr einfach die Funktion zu `bash` oder `zsh` hinzuzufügen. -First, define a window title change function (identical in bash and zsh): +Zuerst wird eine Funktion definiert um den Fenstertitel zu ändern ( für bash und zsh ist die Funktion identisch): ```bash function set_win_title(){ - echo -ne "\033]0; YOUR_WINDOW_TITLE_HERE \007" + echo -ne "\033]0; DEIN_FENSTERTITEL_HIER \007" } ``` -You can use variables to customize this title (`$USER`, `$HOSTNAME`, and `$PWD` are popular choices). +Sie können Variablen verwenden, um diesen Titel anzupassen (`$USER`, `$HOSTNAME`, `$PWD`). -In `bash`, set this function to be the precmd starship function: +Für `bash` muss die Funktion als "precmd starship"-Funktion gesetzt werden: ```bash starship_precmd_user_func="set_win_title" ``` -In `zsh`, add this to the `precmd_functions` array: +Füge dies in `Zsh` zum `precmd_functions`-Array hinzu: ```bash precmd_functions+=(set_win_title) ``` -If you like the result, add these lines to your shell configuration file (`~/.bashrc` or `~/.zsrhc`) to make it permanent. +Um die Funktion dauerhaft zu machen, schreiben Sie diese in die Shell-Konfigurationsdatei: (`~/.bashrc` oder `~/.zsrhc`). -## Style Strings +## Style-Strings Style strings are a list of words, separated by whitespace. The words are not case sensitive (i.e. `bold` and `BoLd` are considered the same string). Each word can be one of the following: diff --git a/docs/de-DE/config/README.md b/docs/de-DE/config/README.md index 99c57269..92f548e0 100644 --- a/docs/de-DE/config/README.md +++ b/docs/de-DE/config/README.md @@ -1,83 +1,84 @@ -# Configuration +# Konfiguration ::: tip -🔥 Configuration is currently being worked on. Many new configuration options will be available in coming releases. +🔥 Die Konfiguration befindet sich derzeit noch in der Entwicklung. Viele neue Konfigurationsoptionen werden in den kommenden Versionen verfügbar sein. ::: -To get started configuring starship, create the following file: `~/.config/starship.toml`. +Um mit der Konfiguration von Starship zu beginnen, musst du die folgende Datei erstellen: `~/.config/starship.toml`. ```shell $ touch ~/.config/starship.toml ``` -All configuration for starship is done in this [TOML](https://github.com/toml-lang/toml) file: +Die gesamte Konfiguration von Starship wird über diese [TOML](https://github.com/toml-lang/toml)-Datei durchgeführt: ```toml -# Don't print a new line at the start of the prompt +# Kein Zeilenumbruch am Anfang der Eingabe add_newline = false -# Replace the "❯" symbol in the prompt with "➜" -[character] # The name of the module we are configuring is "character" -symbol = "➜" # The "symbol" segment is being set to "➜" +# Ersetze das "❯" Symbol in der Konsole mit "➜" +[character] # Wir nehmen Änderungen im Module "character" vor +symbol = "➜" # Das "symbol" Feld wird "➜" gesetzt -# Disable the package module, hiding it from the prompt completely +# Deaktiviere das "package" Modul um es ganz aus der Anzeige zu entfernen [package] disabled = true ``` -### Terminology +### Terminologie -**Module**: A component in the prompt giving information based on contextual information from your OS. For example, the "nodejs" module shows the version of NodeJS that is currently installed on your computer, if your current directory is a NodeJS project. +**Module**: Eine Komponente in der Konsole, die auf kontextualisierte Informationen des OS basiert. Zum Beispiel das "nodejs" Modul zeigt die version von NodeJS, die derzeit auf deinem Rechner installiert ist, wenn dein Arbeitsordner ein NodeJS Projekt umfasst. -**Segment**: Smaller sub-components that compose a module. For example, the "symbol" segment in the "nodejs" module contains the character that is shown before the version number (⬢ by default). +**Segment**: Kleinere Sub-Komponente die ein Modul ergeben. Zum Beispiel, das "symbol" Segment im "nodejs" Modul beinhaltet das Symbol das vor der Versionsnummer gezeigt wird (Standard: ⬢). -Here is the representation of the node module. In the following example, "symbol" and "version" are segments within it. Every module also has a prefix and suffix that are the default terminal color. +Hier ist die Darstellung des Node Moduls. Im folgenden Beispiel betrachten wir die Segmente "symbol" und "version". Jedes Modul hat auch einen Prefix und einen Suffix, das auf die Standardfarbe des Terminals gesetzt ist. ``` [prefix] [symbol] [version] [suffix] "via " "⬢" "v10.4.1" "" ``` -### Style Strings +### Style-Strings -Most modules in starship allow you to configure their display styles. This is done with an entry (usually called `style`) which is a string specifying the configuration. Here are some examples of style strings along with what they do. For details on the full syntax, consult the [advanced config guide](/advanced-config/). +Die meisten Module in starship lassen dich den Darstellungsstil verändern. Dies passiert meistens an einem bestimmten Eintrag (gewöhnlich `style` genannt), der einen String mit den Einstellungen darstellt. Es folgen ein paar Beispiele für solche Strings zusammen mit Beschreibungen was sie bewirken. Details zur vollen Syntax findest du im [Erweiterten Einstellungshandbuch](/advanced-config/). -- `"fg:green bg:blue"` sets green text on a blue background -- `"bg:blue fg:bright-green"` sets bright green text on a blue background -- `"bold fg:27"` sets bold text with [ANSI color](https://i.stack.imgur.com/KTSQa.png) 27 -- `"underline bg:#bf5700"` sets underlined text on a burnt orange background -- `"bold italic fg:purple"` sets bold italic purple text -- `""` explicitly disables all styling +- `"fg:green bg:blue"` setzt grünen Text auf blauen Hintergrund +- `"bg:blue fg:bright-green"` setzt hell-grünen Text auf blauen Hintergrund +- `"bold fg:27"` setzt dicke Schrift auf [ANSI Farbe](https://i.stack.imgur.com/KTSQa.png) 27 +- `"underline bg:#bf5700"` setzt unterstrichenen Text auf einen orangenen Hintergrund +- `"bold italic fg:purple"` setzt dicke Kursivschrift lila +- `""` deativiert explizit jeden Stil -Note that what styling looks like will be controlled by your terminal emulator. For example, some terminal emulators will brighten the colors instead of bolding text, and some color themes use the same values for the normal and bright colors. Also, to get italic text, your terminal must support italics. +Wie genau sich diese Konfiguration auswirkt liegt an deinem Shell Emulator. Einige Emulatoren zum Beispiel werden die Farben erhellen statt Text dick zu machen, und ein paar Farbthemata benutzen dieselben werte für normale und helle Farben. Für kursiven Text muss dein Terminal Kursivschrift unterstützen. ## Prompt -This is the list of prompt-wide configuration options. +Dies ist eine Liste mit Prompt-weiten Konfigurationsoptionen. -### Options +### Optionen -| Variable | Default | Description | -| -------------- | ----------------------------- | ------------------------------------------------------ | -| `add_newline` | `true` | Add a new line before the start of the prompt. | -| `prompt_order` | [link](#default-prompt-order) | Configure the order in which the prompt module occurs. | +| Variable | Standardwert | Beschreibung | +| -------------- | ----------------------------- | ------------------------------------------------------------------ | +| `add_newline` | `true` | Neuer Zeilenumbruch bei Start des Prompts. | +| `prompt_order` | [link](#default-prompt-order) | Stelle die Reihenfolge ein, in der die Module den prompt aufbauen. | -### Example +### Beispiel ```toml # ~/.config/starship.toml -# Disable the newline at the start of the prompt +# Kein Zeilenumbruch am Anfang der Eingabe add_newline = false -# Overwrite a default_prompt_order and use custom prompt_order + +# Überscheibt die Standard-Reihenfolge und nutzt die folgende prompt_order=["rust","line_break","package","line_break","character"] ``` -### Default Prompt Order +### Default Promp Order -The default `prompt_order` is used to define the order in which modules are shown in the prompt, if empty or no `prompt_order` is provided. The default is as shown: +Die Standard `prompt_order` wird benutzt um die Reihenfolge der Module im Prompt zu definieren, falls `prompt_order` leer oder nicht gesetzt ist. Der default sieht wie folgt aus: ```toml prompt_order = [ @@ -112,17 +113,17 @@ prompt_order = [ ## AWS -The `aws` module shows the current AWS profile. This is based on the `AWS_PROFILE` env var. +Das `aws`-Modul zeigt das aktuelle AWS-Profil an. Dies basiert auf den Umgebungsvariablen: `AWS_REGION`, `AWS_DEFAULT_REGION`, `AWS_PROFILE` und der `~/.aws/config` Datei. -### Options +### Optionen -| Variable | Default | Description | -| ---------- | --------------- | ---------------------------------------------------------- | -| `symbol` | `"☁️ "` | The symbol used before displaying the current AWS profile. | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `AWS` module. | +| Variable | Standardwert | Beschreibung | +| ---------- | --------------- | ------------------------------------------------------------------- | +| `symbol` | `"☁️ "` | Symbol das vor der Anzahl des aktuellen AWS-Profils angezeigt wird. | +| `style` | `"bold yellow"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `aws`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -132,22 +133,22 @@ style = "bold blue" symbol = "🅰 " ``` -## Battery +## Akkustand -The `battery` module shows how charged the device's battery is and its current charging status. The module is only visible when the device's battery is below 10%. +Das `battery` Modul zeigt, wie hoch der Akku des Geräts geladen ist und den aktuellen Ladestatus. Das Modul ist nur sichtbar, wenn der Akku des Geräts unter 10% geladen ist. -### Options +### Optionen -| Variable | Default | Description | -| -------------------- | ------------------------ | ------------------------------------------------- | -| `full_symbol` | `"•"` | The symbol shown when the battery is full. | -| `charging_symbol` | `"⇡"` | The symbol shown when the battery is charging. | -| `discharging_symbol` | `"⇣"` | The symbol shown when the battery is discharging. | -| `display` | [link](#battery-display) | Display threshold and style for the module. | -| `disabled` | `false` | Disables the `battery` module. | +| Variable | Standardwert | Beschreibung | +| -------------------- | ------------------------ | ----------------------------------------------------------------------------------- | +| `full_symbol` | `"•"` | Das Symbol das angezeigt wird wenn der Akku voll geladen ist. | +| `charging_symbol` | `"⇡"` | Das Symbol das angezeigt wird wenn der Akku aufgeladen wird. | +| `discharging_symbol` | `"⇣"` | Das Symbol, das angezeigt wird, wenn die Batterie entladen wird. | +| `display` | [link](#battery-display) | Stellt den Grenzwert ein ab dem der Ladezustand (das battery-Modul) angezeigt wird. | +| `disabled` | `false` | Wenn der Wert auf `true` steht, wird das Akkustand-Modul deaktiviert. |
-There are also options for some uncommon battery states. +Das Batterie-Modul unterstützt auch einige ungewöhnliche Zustände. | Variable | Description | | ---------------- | --------------------------------------------------- | @@ -158,7 +159,7 @@ Note: Battery indicator will be hidden if the status is `unknown` or `empty` unl
-### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -169,9 +170,9 @@ charging_symbol = "⚡️" discharging_symbol = "💀" ``` -### Battery Display +### Anzeige des Akkustandes -The `display` configuration option is used to define when the battery indicator should be shown (threshold) and what it looks like (style). If no `display` is provided. The default is as shown: +Die `display` Konfiguration "threshold" stellt ein ab wann die Akkuanzeige eingeblendet wird. Mit "style" wird das Erscheinungsbild festgelegt. Wenn `display` nicht angegeben ist. Werden die folgenden Standardwerte verwendet: ```toml [[battery.display]] @@ -179,49 +180,49 @@ threshold = 10 style = "bold red" ``` -#### Options +#### Optionen -The `display` option is an array of the following table. +Die `display`-Option beinhaltet ein Array mit den folgenden Werten. -| Variable | Description | -| ----------- | ----------------------------------------------- | -| `threshold` | The upper bound for the display option. | -| `style` | The style used if the display option is in use. | +| Variable | Beschreibung | +| ----------- | ------------------------------------------------------- | +| `threshold` | Der Schwellenwert zur Anzeige dieser Option. | +| `style` | Der Stil, der zur Anzeige dieser Option verwendet wird. | -#### Example +#### Beispiel ```toml -[[battery.display]] # "bold red" style when capacity is between 0% and 10% +[[battery.display]] # "bold red" bei Akkustand zwischen 0–10% threshold = 10 style = "bold red" -[[battery.display]] # "bold yellow" style when capacity is between 10% and 30% +[[battery.display]] # "bold yellow" bei Akkustand zwischen 10–30% threshold = 30 style = "bold yellow" -# when capacity is over 30%, the battery indicator will not be displayed +# Bei Akkustand über 30% wird der Akkustand nicht angezeigt ``` -## Character +## Zeichen -The `character` module shows a character (usually an arrow) beside where the text is entered in your terminal. +Das `character` Modul zeigt ein Zeichen ( meistens einen Pfeil "❯") vor der Texteingabe an. -The character will tell you whether the last command was successful or not. It can do this in two ways: by changing color (red/green) or by changing its shape (❯/✖). The latter will only be done if `use_symbol_for_status` is set to `true`. +Das Zeichen zeigt an ob der letzte Befehl erfolgreich war, oder einen Fehler erzeugt hat. Das Modul ändert entweder die Farbe, ("style_success","style_failure") standardmäßig Grün/Rot. Oder das Symbol, wenn `use_symbol_for_status` auf `true` steht. -### Options +### Optionen -| Variable | Default | Description | -| ----------------------- | -------------- | ----------------------------------------------------------------------------------- | -| `symbol` | `"❯"` | The symbol used before the text input in the prompt. | -| `error_symbol` | `"✖"` | The symbol used before text input if the previous command failed. | -| `use_symbol_for_status` | `false` | Indicate error status by changing the symbol. | -| `vicmd_symbol` | `"❮"` | The symbol used before the text input in the prompt if shell is in vim normal mode. | -| `style_success` | `"bold green"` | The style used if the last command was successful. | -| `style_failure` | `"bold red"` | The style used if the last command failed. | -| `disabled` | `false` | Disables the `character` module. | +| Variable | Standardwert | Beschreibung | +| ----------------------- | -------------- | ----------------------------------------------------------------------------------------------------------------- | +| `symbol` | `"❯"` | Das Symbol, das vor der Texteingabe im Prompt verwendet wird. | +| `error_symbol` | `"✖"` | Das Symbol, das vor der Texteingabe angezeigt wird, wenn der letzte Befehl fehlgeschlagen ist. | +| `use_symbol_for_status` | `false` | Fehlerstatus durch Ändern des Symbols anzeigen. | +| `vicmd_symbol` | `"❮"` | Das Symbol, das vor Texteingaben im Prompt verwendet wird, wenn die Shell sich im "normal mode" von vim befindet. | +| `style_success` | `"bold green"` | Der Stil, der verwendet wird, wenn der letzte Befehl erfolgreich war. | +| `style_failure` | `"bold red"` | Der Stil, der verwendet wird, wenn der letzte Befehl fehlgeschlagen ist. | +| `disabled` | `false` | Deaktiviert das `character`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -232,11 +233,11 @@ error_symbol = "✗" use_symbol_for_status = true ``` -## Command Duration +## Befehlsdauer The `cmd_duration` module shows how long the last command took to execute. The module will be shown only if the command took longer than two seconds, or the `min_time` config value, if it exists. -::: warning Do not hook the DEBUG trap in Bash +::: warning Nicht die DEBUG-trap in der Bash hooken If you are running Starship in `bash`, do not hook the `DEBUG` trap after running `eval $(starship init $0)`, or this module **will** break. @@ -244,16 +245,16 @@ If you are running Starship in `bash`, do not hook the `DEBUG` trap after runnin Bash users who need preexec-like functionality can use [rcaloras's bash_preexec framework](https://github.com/rcaloras/bash-preexec). Simply define the arrays `preexec_functions` and `precmd_functions` before running `eval $(starship init $0)`, and then proceed as normal. -### Options +### Optionen -| Variable | Default | Description | -| ---------- | --------------- | ---------------------------------------------------------- | -| `min_time` | `2` | Shortest duration to show time for. | -| `prefix` | `took` | Prefix to display immediately before the command duration. | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `cmd_duration` module. | +| Variable | Standardwert | Beschreibung | +| ---------- | --------------- | ------------------------------------------------------------------------- | +| `min_time` | `2` | Kürzestes Wert für den die Ausführungsdauer angezeigt wird (in Sekunden). | +| `prefix` | `took` | Prefix der unmittelbar vor der Ausführungszeit angezeigt wird. | +| `style` | `"bold yellow"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `cmd_duration`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -265,17 +266,17 @@ prefix = "underwent " ## Conda -The `conda` module shows the current conda environment, if `$CONDA_DEFAULT_ENV` is set. Note: This does not suppress conda's own prompt modifier, you may want to run `conda config --set changeps1 False` +Das `conda`-Modul zeigt dessen aktuelle Umgebung an, sofern `$CONDA_DEFAULT_ENV` gesetzt ist. Hinweis: Dies unterdrückt conda's eigenen Prompt-Modifikator nicht, sie können jedoch `conda config --set changeps1 False` setzen, um dies zu realisieren. -### Options +### Optionen -| Variable | Default | Description | -| ---------- | -------------- | -------------------------------------------- | -| `symbol` | `"C "` | The symbol used before the environment name. | -| `style` | `"bold green"` | The style for the module. | -| `disabled` | `false` | Disables the `conda` module. | +| Variable | Standardwert | Beschreibung | +| ---------- | -------------- | ------------------------------------------------- | +| `symbol` | `"C "` | Symbol das vor dem Umgebungsnamen angezeigt wird. | +| `style` | `"bold green"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `conda`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -284,7 +285,7 @@ The `conda` module shows the current conda environment, if `$CONDA_DEFAULT_ENV` style = "dimmed green" ``` -## Directory +## Verzeichnis The `directory` module shows the path to your current directory, truncated to three parent folders. Your directory will also be truncated to the root of the git repo that you're currently in. @@ -292,26 +293,26 @@ When using the fish style pwd option, instead of hiding the path that is truncat For example, given `~/Dev/Nix/nixpkgs/pkgs` where `nixpkgs` is the repo root, and the option set to `1`. You will now see `~/D/N/nixpkgs/pkgs`, whereas before it would have been `nixpkgs/pkgs`. -### Options +### Optionen -| Variable | Default | Description | +| Variable | Standardwert | Beschreibung | | ------------------- | ------------- | -------------------------------------------------------------------------------- | -| `truncation_length` | `3` | The number of parent folders that the current directory should be truncated to. | +| `truncation_length` | `3` | Die Anzahl der übergeordneten Ordner, die angezeigt werden. | | `truncate_to_repo` | `true` | Whether or not to truncate to the root of the git repo that you're currently in. | -| `style` | `"bold cyan"` | The style for the module. | -| `disabled` | `false` | Disables the `directory` module. | +| `style` | `"bold cyan"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `directory`-Modul. |
-This module has a few advanced configuration options that control how the directory is displayed. +Dieses Modul hat einige erweiterte Konfigurationsoptionen, welche die Darstellung von Verzeichnissen steuern. -| Variable | Default | Description | -| --------------------------- | ------- | ---------------------------------------------------------------------------------------- | -| `fish_style_pwd_dir_length` | `0` | The number of characters to use when applying fish shell pwd path logic. | -| `use_logical_path` | `true` | Displays the logical path provided by the shell (`PWD`) instead of the path from the OS. | +| Variable | Standardwert | Beschreibung | +| --------------------------- | ------------ | ---------------------------------------------------------------------------------------- | +| `fish_style_pwd_dir_length` | `0` | The number of characters to use when applying fish shell pwd path logic. | +| `use_logical_path` | `true` | Displays the logical path provided by the shell (`PWD`) instead of the path from the OS. |
-### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -328,16 +329,16 @@ This module will only be shown in your prompt when one of the following files ar Internally, this module uses its own mechanism for version detection. Typically it is twice as fast as running `dotnet --version`, but it may show an incorrect version if your .NET project has an unusual directory layout. If accuracy is more important than speed, you can disable the mechanism by setting `heuristic = false` in the module options. -### Options +### Optionen -| Variable | Default | Description | -| ----------- | ------------- | -------------------------------------------------------- | -| `symbol` | `"•NET "` | The symbol used before displaying the version of dotnet. | -| `style` | `"bold blue"` | The style for the module. | -| `heuristic` | `true` | Use faster version detection to keep starship snappy. | -| `disabled` | `false` | Disables the `dotnet` module. | +| Variable | Standardwert | Beschreibung | +| ----------- | ------------- | ------------------------------------------------------------------ | +| `symbol` | `"•NET "` | Symbol das vor der dotnet-Version angezeigt wird. | +| `style` | `"bold blue"` | Stil für dieses Modul. | +| `heuristic` | `true` | Schnelle Versionserkennung nutzen um Starship bedienbar zu halten. | +| `disabled` | `false` | Deaktiviert das `dotnet`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -348,26 +349,26 @@ style = "green" heuristic = false ``` -## Environment Variable +## Umgebungsvariablen The `env_var` module displays the current value of a selected environment variable. The module will be shown only if any of the following conditions are met: - The `variable` configuration option matches an existing environment variable - The `variable` configuration option is not defined, but the `default` configuration option is -### Options +### Optionen -| Variable | Default | Description | +| Variable | Standardwert | Beschreibung | | ---------- | ---------------- | ---------------------------------------------------------------------------- | | `symbol` | | The symbol used before displaying the variable value. | | `variable` | | The environment variable to be displayed. | | `default` | | The default value to be displayed when the selected variable is not defined. | | `prefix` | `""` | Prefix to display immediately before the variable value. | | `suffix` | `""` | Suffix to display immediately after the variable value. | -| `style` | `"dimmed black"` | The style for the module. | -| `disabled` | `false` | Disables the `env_var` module. | +| `style` | `"dimmed black"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `env_var`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -377,38 +378,38 @@ variable = "SHELL" default = "unknown shell" ``` -## Git Branch +## Git-Branch -The `git_branch` module shows the active branch of the repo in your current directory. +Das `git_branch`-Modul zeigt den aktiven Git-Branch des Repositories im aktuellen Verzeichnis an. -### Options +### Optionen -| Variable | Default | Description | +| Variable | Standardwert | Beschreibung | | ------------------- | --------------- | ------------------------------------------------------------------------------------- | | `symbol` | `" "` | The symbol used before the branch name of the repo in your current directory. | | `truncation_length` | `2^63 - 1` | Truncates a git branch to X graphemes | | `truncation_symbol` | `"…"` | The symbol used to indicate a branch name was truncated. You can use "" for no symbol | -| `style` | `"bold purple"` | The style for the module. | -| `disabled` | `false` | Disables the `git_branch` module. | +| `style` | `"bold purple"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `git_branch`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml [git_branch] symbol = "🌱 " -truncation_length = "4" +truncation_length = 4 truncation_symbol = "" ``` -## Git State +## Git-Zustand The `git_state` module will show in directories which are part of a git repository, and where there is an operation in progress, such as: _REBASING_, _BISECTING_, etc. If there is progress information (e.g., REBASING 3/10), that information will be shown too. -### Options +### Optionen -| Variable | Default | Description | +| Variable | Standardwert | Beschreibung | | ------------------ | ------------------ | ---------------------------------------------------------------------------------------------------------------- | | `rebase` | `"REBASING"` | The text displayed when a `rebase` is in progress. | | `merge` | `"MERGING"` | The text displayed when a `merge` is in progress. | @@ -418,10 +419,10 @@ The `git_state` module will show in directories which are part of a git reposito | `am` | `"AM"` | The text displayed when an `apply-mailbox` (`git am`) is in progress. | | `am_or_rebase` | `"AM/REBASE"` | The text displayed when an ambiguous `apply-mailbox` or `rebase` is in progress. | | `progress_divider` | `"/"` | The symbol or text which will separate the current and total progress amounts. (e.g., `" of "`, for `"3 of 10"`) | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `git_state` module. | +| `style` | `"bold yellow"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `git_state`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -431,13 +432,13 @@ progress_divider = " of " cherry_pick = "🍒 PICKING" ``` -## Git Status +## Git-Status The `git_status` module shows symbols representing the state of the repo in your current directory. ### Options -| Variable | Default | Description | +| Variable | Standardwert | Beschreibung | | ----------------- | ------------ | ------------------------------------------------------- | | `conflicted` | `"="` | This branch has merge conflicts. | | `ahead` | `"⇡"` | This branch is ahead of the branch being tracked. | @@ -452,10 +453,10 @@ The `git_status` module shows symbols representing the state of the repo in your | `show_sync_count` | `false` | Show ahead/behind count of the branch being tracked. | | `prefix` | `[` | Prefix to display immediately before git status. | | `suffix` | `]` | Suffix to display immediately after git status. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `git_status` module. | +| `style` | `"bold red"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `git_status`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -475,25 +476,25 @@ deleted = "🗑" ## Golang -The `golang` module shows the currently installed version of Golang. The module will be shown if any of the following conditions are met: +Das `golang`-Modul zeigt die aktuell installierte Version von Golang. Das Modul wird nur dann angezeigt, wenn eine der folgenden Bedingungen zutrifft: -- The current directory contains a `go.mod` file -- The current directory contains a `go.sum` file -- The current directory contains a `glide.yaml` file -- The current directory contains a `Gopkg.yml` file -- The current directory contains a `Gopkg.lock` file -- The current directory contains a `Godeps` directory -- The current directory contains a file with the `.go` extension +- Das aktuelle Verzeichnis enthält eine `go.mod`-Datei +- Das aktuelle Verzeichnis enthält eine `go.sum`-Datei +- Das aktuelle Verzeichnis enthält eine `glide.yaml`-Datei +- Das aktuelle Verzeichnis enthält eine `Gopkg.yml`-Datei +- Das aktuelle Verzeichnis enthält eine `Gopkg.lock`-Datei +- Das aktuelle Verzeichnis enthält ein `Godeps`-Verzeichnis +- Das aktuelle Verzeichnis enthält eine Datei mit der `.go`-Erweiterung -### Options +### Optionen -| Variable | Default | Description | -| ---------- | ------------- | -------------------------------------------------------- | -| `symbol` | `"🐹 "` | The symbol used before displaying the version of Golang. | -| `style` | `"bold cyan"` | The style for the module. | -| `disabled` | `false` | Disables the `golang` module. | +| Variable | Standardwert | Beschreibung | +| ---------- | ------------- | ------------------------------------------------- | +| `symbol` | `"🐹 "` | Symbol das vor der Golang-Version angezeigt wird. | +| `style` | `"bold cyan"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `golang`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -504,27 +505,29 @@ symbol = "🏎💨 " ## Hostname -The `hostname` module shows the system hostname. +Das `hostname`-Modul zeigt den Hostnamen des Systems an. -### Options +### Optionen -| 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 | Standardwert | Beschreibung | +| ---------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------ | +| `ssh_only` | `true` | Zeigt den Hostnamen nur, wenn via SSH-Sitzung verbunden. | +| `prefix` | `""` | Prefix der unmittelbar vor dem Hostnamen angezeigt wird. | +| `suffix` | `""` | Suffix der unmittelbar nach dem Hostnamen angezeigt wird. | +| `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 +### Beispiel ```toml # ~/.config/starship.toml [hostname] ssh_only = false -prefix = "⟪" -suffix = "⟫" +prefix = "10218;" +suffix = " 10219;" +trim_at = ".companyname.com" disabled = false ``` @@ -532,16 +535,16 @@ disabled = false The `jobs` module shows the current number of jobs running. The module will be shown only if there are background jobs running. The module will show the number of jobs running if there is more than 1 job, or more than the `threshold` config value, if it exists. -### Options +### Optionen -| Variable | Default | Description | -| ----------- | ------------- | ----------------------------------------------------- | -| `symbol` | `"✦"` | The symbol used before displaying the number of jobs. | -| `threshold` | `1` | Show number of jobs if exceeded. | -| `style` | `"bold blue"` | The style for the module. | -| `disabled` | `false` | Disables the `jobs` module. | +| Variable | Standardwert | Beschreibung | +| ----------- | ------------- | -------------------------------------------------------------------------------- | +| `symbol` | `"✦"` | Symbol das vor der Anzahl der Jobs angezeigt wird. | +| `threshold` | `1` | Zeigt die Anzahl der Jobs wenn der angegebene Schwellenwert überschritten wurde. | +| `style` | `"bold blue"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `jobs`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -559,19 +562,19 @@ astronaut`. If the `$KUBECONFIG` env var is set the module will use that if not ::: tip -This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file. +Dieses Modul ist standardmäßig deaktiviert. Setze in deiner Konfiguration `disabled` auf `false` um es zu aktivieren. ::: -### Options +### Optionen -| Variable | Default | Description | -| ---------- | ------------- | --------------------------------------------------- | -| `symbol` | `"☸ "` | The symbol used before displaying the Cluster info. | -| `style` | `"bold blue"` | The style for the module. | -| `disabled` | `true` | Disables the `kubernetes` module | +| Variable | Standardwert | Beschreibung | +| ---------- | ------------- | ------------------------------------------------------ | +| `symbol` | `"☸ "` | Symbol das vor der Cluster-Information angezeigt wird. | +| `style` | `"bold blue"` | Stil für dieses Modul. | +| `disabled` | `true` | Deaktiviert das `kubernetes`-Modul | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -583,17 +586,17 @@ disabled = false ``` -## Line Break +## Zeilenumbruch -The `line_break` module separates the prompt into two lines. +Das `line_break`-Modul unterteilt den Prompt in zwei Zeilen. -### Options +### Optionen -| Variable | Default | Description | -| ---------- | ------- | ------------------------------------------------------------------ | -| `disabled` | `false` | Disables the `line_break` module, making the prompt a single line. | +| Variable | Standardwert | Beschreibung | +| ---------- | ------------ | ---------------------------------------------------------------------- | +| `disabled` | `false` | Deaktiviert das `line_break`-Modul, wodurch der Prompt einzeilig wird. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -602,21 +605,21 @@ The `line_break` module separates the prompt into two lines. disabled = true ``` -## Nix-shell +## Nix-Shell -The `nix_shell` module shows the nix-shell environment. The module will be shown when inside a nix-shell environment. +Das `nix_shell`-Modul zeigt die nix-shell Umgebung an. Das Modul wird angezeigt, wenn es sich in einer nix-Shell-Umgebung befindet. -### Options +### Optionen -| Variable | Default | Description | +| Variable | Standardwert | Beschreibung | | ------------ | ------------ | ---------------------------------- | -| `use_name` | `false` | Display the name of the nix-shell. | -| `impure_msg` | `impure` | Customize the "impure" msg. | -| `pure_msg` | `pure` | Customize the "pure" msg. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `nix_shell` module. | +| `use_name` | `false` | Namen der nix-Shell anzeigen. | +| `impure_msg` | `impure` | Passt die "impure"-Nachricht an. | +| `pure_msg` | `pure` | Passt die "pure"-Nachricht an. | +| `style` | `"bold red"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `nix_shell`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -628,7 +631,7 @@ impure_msg = "impure shell" pure_msg = "pure shell" ``` -## Memory Usage +## Speicherauslastung The `memory_usage` module shows current system memory and swap usage. @@ -636,22 +639,22 @@ By default the swap usage is displayed if the total system swap is non-zero. ::: tip -This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file. +Dieses Modul ist standardmäßig deaktiviert. Setze in deiner Konfiguration `disabled` auf `false` um es zu aktivieren. ::: -### Options +### Optionen -| 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 | Standardwert | Beschreibung | +| ----------------- | --------------------- | ------------------------------------------------------------- | +| `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` | `"🐏 "` | Symbol das vor der Speicherauslastung angezeigt wird. | +| `style` | `"bold dimmed white"` | Stil für dieses Modul. | +| `disabled` | `true` | Deaktiviert das `memory_usage`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -671,15 +674,15 @@ The `java` module shows the currently installed version of Java. The module will - The current directory contains a `pom.xml`, `build.gradle` or `build.sbt` file - The current directory contains a file with the `.java`, `.class` or `.jar` extension -### Options +### Optionen -| Variable | Default | Description | -| ---------- | -------------- | ------------------------------------------------------ | -| `symbol` | `"☕ "` | The symbol used before displaying the version of Java. | -| `style` | `"dimmed red"` | The style for the module. | -| `disabled` | `false` | Disables the `java` module. | +| Variable | Standardwert | Beschreibung | +| ---------- | -------------- | ----------------------------------------------- | +| `symbol` | `"☕ "` | Symbol das vor der Java-Version angezeigt wird. | +| `style` | `"dimmed red"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `Java`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -696,15 +699,15 @@ The `nodejs` module shows the currently installed version of NodeJS. The module - The current directory contains a `node_modules` directory - The current directory contains a file with the `.js` extension -### Options +### Optionen -| Variable | Default | Description | -| ---------- | -------------- | -------------------------------------------------------- | -| `symbol` | `"⬢ "` | The symbol used before displaying the version of NodeJS. | -| `style` | `"bold green"` | The style for the module. | -| `disabled` | `false` | Disables the `nodejs` module. | +| Variable | Standardwert | Beschreibung | +| ---------- | -------------- | ------------------------------------------------- | +| `symbol` | `"⬢ "` | Symbol das vor der NodeJS-Version angezeigt wird. | +| `style` | `"bold green"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `nodejs`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -713,7 +716,7 @@ The `nodejs` module shows the currently installed version of NodeJS. The module symbol = "🤖 " ``` -## Package Version +## Paketversion The `package` module is shown when the current directory is the repository for a package, and shows its current version. The module currently supports `npm`, `cargo`, and `poetry` packages. @@ -723,15 +726,15 @@ The `package` module is shown when the current directory is the repository for a > ⚠️ The version being shown is that of the package whose source code is in your current directory, not your package manager. -### Options +### Optionen -| Variable | Default | Description | -| ---------- | ------------ | ---------------------------------------------------------- | -| `symbol` | `"📦 "` | The symbol used before displaying the version the package. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `package` module. | +| Variable | Standardwert | Beschreibung | +| ---------- | ------------ | ----------------------------------------------- | +| `symbol` | `"📦 "` | Symbol das vor der Paketversion angezeigt wird. | +| `style` | `"bold red"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `package`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -757,17 +760,17 @@ The module will be shown if any of the following conditions are met: - The current directory contains a `Pipfile` file - The current directory contains a `tox.ini` file -### Options +### Optionen -| Variable | Default | Description | -| -------------------- | --------------- | --------------------------------------------------------------------------- | -| `symbol` | `"🐍 "` | The symbol used before displaying the version of Python. | -| `pyenv_version_name` | `false` | Use pyenv to get Python version | -| `pyenv_prefix` | `"pyenv "` | Prefix before pyenv version display (default display is `pyenv MY_VERSION`) | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `python` module. | +| Variable | Standardwert | Beschreibung | +| -------------------- | --------------- | ------------------------------------------------------------------- | +| `symbol` | `"🐍 "` | Symbol das vor der Python-Version angezeigt wird. | +| `pyenv_version_name` | `false` | Verwende `pyenv` um die Python-Versionzu beziehen. | +| `pyenv_prefix` | `"pyenv "` | Prefix zur Anzeige der pyenv-Version (Standard: `pyenv MY_VERSION`) | +| `style` | `"bold yellow"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `python`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -785,15 +788,15 @@ The `ruby` module shows the currently installed version of Ruby. The module will - The current directory contains a `Gemfile` file - The current directory contains a `.rb` file -### Options +### Optionen -| Variable | Default | Description | -| ---------- | ------------ | ------------------------------------------------------ | -| `symbol` | `"💎 "` | The symbol used before displaying the version of Ruby. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `ruby` module. | +| Variable | Standardwert | Beschreibung | +| ---------- | ------------ | ----------------------------------------------- | +| `symbol` | `"💎 "` | Symbol das vor der Ruby-Version angezeigt wird. | +| `style` | `"bold red"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `ruby`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -809,15 +812,15 @@ The `rust` module shows the currently installed version of Rust. The module will - The current directory contains a `Cargo.toml` file - The current directory contains a file with the `.rs` extension -### Options +### Optionen -| Variable | Default | Description | -| ---------- | ------------ | ------------------------------------------------------ | -| `symbol` | `"🦀 "` | The symbol used before displaying the version of Rust. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `rust` module. | +| Variable | Standardwert | Beschreibung | +| ---------- | ------------ | ----------------------------------------------- | +| `symbol` | `"🦀 "` | Symbol das vor der Rust-Version angezeigt wird. | +| `style` | `"bold red"` | Stil für dieses Modul. | +| `disabled` | `false` | Deaktiviert das `rust`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -826,29 +829,29 @@ The `rust` module shows the currently installed version of Rust. The module will symbol = "⚙️ " ``` -## Time +## Uhrzeit The `time` module shows the current **local** time. The `format` configuration value is used by the [`chrono`](https://crates.io/crates/chrono) crate to control how the time is displayed. Take a look [at the chrono strftime docs](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html) to see what options are available. ::: tip -This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file. +Dieses Modul ist standardmäßig deaktiviert. Setze in deiner Konfiguration `disabled` auf `false` um es zu aktivieren. ::: -### Options +### Optionen -| Variable | Default | Description | -| ----------------- | ------------- | ------------------------------------------------------------------------------------------------------------------- | -| `12hr` | `false` | Enables 12 hour formatting | -| `format` | see below | The [chrono format string](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html) used to format the time. | -| `style` | `bold yellow` | The style for the module time | -| `disabled` | `true` | Disables the `time` module. | -| `utc_time_offset` | `local` | Sets the UTC offset to use. Range from -24 < x < 24. Allows floats to accommodate 30/45 minute timezone offsets. | +| Variable | Standardwert | Beschreibung | +| ----------------- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | +| `12hr` | `false` | Aktiviert die Formatierung der Uhrzeit im 12-Stunden-Format. | +| `format` | Siehe unten | Das Format zum Anzeigen der Uhrzeit in [chrono-Formatierung](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html). | +| `style` | `bold yellow` | Stil für dieses Modul. | +| `disabled` | `true` | Deaktiviert das `time`-Modul. | +| `utc_time_offset` | `lokal` | Legt das UTC-Offset fest, das verwendet werden soll. Reicht von -24 < x < 24. Allows floats to accommodate 30/45 minute timezone offsets. | -If `use_12hr` is `true`, then `format` defaults to `"%r"`. Otherwise, it defaults to `"%T"`. Manually setting `format` will override the `use_12hr` setting. +Wird `use_12hr` auf `true` gestellt, so wird `format` automatisch auf `"%r"` gesetzt. Ansonsten ist der Standardwert hierfür `"%T"`. Wird hingegen `format` gesetzt, so überschreibt dies die Einstellung `use_12hr`. -### Example +### Beispiel ```toml # ~/.config/starship.toml @@ -859,25 +862,25 @@ format = "🕙[ %T ]" utc_time_offset = -5 ``` -## Username +## Benutzername -The `username` module shows active user's username. The module will be shown if any of the following conditions are met: +Das Modul `username` zeigt den Benutzernamen des aktiven Benutzers. Das Modul wird nur dann angezeigt, wenn eine der folgenden Bedingungen zutrifft: -- The current user is root -- The current user isn't the same as the one that is logged in -- The user is currently connected as an SSH session -- The variable `show_always` is set to true +- Der aktuelle Benutzer ist root +- Der aktuelle Benutzer ist nicht derjenige, der derzeit angemeldet ist +- Der Benutzer ist über eine SSH-Sitzung verbunden +- Die Variale `show_always` ist auf `true` gesetzt -### Options +### Optionen -| Variable | Default | Description | -| ------------- | --------------- | ------------------------------------- | -| `style_root` | `"bold red"` | The style used when the user is root. | -| `style_user` | `"bold yellow"` | The style used for non-root users. | -| `show_always` | `false` | Always shows the `username` module. | -| `disabled` | `false` | Disables the `username` module. | +| Variable | Standardwert | Beschreibung | +| ------------- | --------------- | --------------------------------- | +| `style_root` | `"bold red"` | Stil beim root-Benutzer. | +| `style_user` | `"bold yellow"` | Stil bei allen anderen Benutzern. | +| `show_always` | `false` | `username`-Modul immer anzeigen. | +| `disabled` | `false` | Deaktiviert das `username`-Modul. | -### Example +### Beispiel ```toml # ~/.config/starship.toml diff --git a/docs/de-DE/guide/README.md b/docs/de-DE/guide/README.md index f71d6b1e..115b4d9e 100644 --- a/docs/de-DE/guide/README.md +++ b/docs/de-DE/guide/README.md @@ -2,23 +2,26 @@
Starship – Cross-shell prompt + alt="Starship – Cross-Shell Prompt" />

GitHub Actions workflow status + alt="Workflow-Status der GitHub Actions" /> Crates.io version + >Crates.io-Version Packaging status
Paket-Status
+ + + All Contributors + Installation · - Configuration + Konfiguration

English + >Englisch  - 日本語  Français  Русский + >Russisch

-

Starship is the minimal, blazing fast, and extremely customizable prompt for any shell!
The prompt shows information you need while you're working, while staying sleek and out of the way.

+

Starship ist der leichtgewichtige, blitzschnelle und extrem anpassbare Prompt für jede Shell!
Der Prompt zeigt dir alle Informationen die du für deine Arbeit brauchst ohne dich dabei zu stören.


- Starship with iTerm2 and the Snazzy theme + Starship mit iTem2 und dem Theme „Snazzy“

## 🍬 Features -- Prompt character turns red if the last command exits with non-zero code -- Current username if not the same as the logged-in user -- Current Java version(`☕`) -- Current Node.js version(`⬢`) -- Current Rust version (`🦀`) -- Current Ruby version (`💎`) -- Current Python version (`🐍`) -- Current Go version (`🐹`) -- Nix-shell environment detection -- Print an environment variable -- Current version of package in current directory (`📦`) +- Anzeigetext wird rot wenn der letzte Befehl mit einem Exit-code größer null terminiert +- Benutzername, wenn dieser nicht dem angemeldeten Benutzer entspricht +- Derzeitige Java-Version (`☕`) +- Derzeitige Node.js-Version (`⬢`) +- Derzeitige Rust-Version (`🦀`) +- Derzeitige Ruby-Version (`💎`) +- Derzeitige Python-Version (`🐍`) +- Derzeitige Go-Version (`🐹`) +- Erkennung von Nix-Shell-Umgebungen +- Ausgabe von Umgebungsvariablen +- Version des Paketmanagers im derzeitigen Pfad (`📦`) - npm (Node.js) - cargo (Rust) - poetry (Python) -- Current battery level and status -- Current Git branch and rich repo status: - - `=` — conflicting changes - - `⇡` — ahead of remote branch - - `⇣` — behind of remote branch - - `⇕` — diverged changes - - `?` — untracked changes - - `$` — stashed changes - - `!` — modified files - - `+` — added files - - `»` — renamed files - - `✘` — deleted files -- Execution time of the last command if it exceeds the set threshold -- Indicator for jobs in the background (`✦`) -- Current Kubernetes Cluster and Namespace (`☸`) +- Batteriestand und -status +- Aktueller Git-Branch und ausführlicher Repository-Status: + - `=` — konkurrierende Änderungen + - `⇡` — vor remote branch + - `⇣` — hinter remote branch + - `⇕` — abweichende Änderungen + - `?` — ungespeicherte Änderungen + - `$` — gestashte Änderungen + - `!` — veränderte Dateien + - `+` — hinzugefügte Dateien + - `»` — umbenannte Dateien + - `✘` — gelöschte Dateien +- Laufzeit des zuletzt ausgeführten Befehls, wenn sie länger als der gesetzte Schwellenwert ist +- Anzeige für Hintergrundsprozesse (`✦`) +- Aktueller Kubernetes Cluster und Namespace (`☸`) +- Aktuelles AWS Profil (`☁️`) ## 🚀 Installation -### Prerequisites +### Voraussetzungen -- A [Powerline font](https://github.com/powerline/fonts) installed and enabled in your terminal (for example, try [Fira Code](https://github.com/tonsky/FiraCode)). +- Eine [Powerline-Schriftart](https://github.com/powerline/fonts) installiert und in deinem Terminal aktiviert (z.B. [Fira Code](https://github.com/tonsky/FiraCode)). -### Getting Started +### Erste Schritte -1. Install the **starship** binary: +1. Installiere die Binärversion von **starship**: - **[Download archives of precompiled binaries](https://github.com/starship/starship/releases)** if you don't use the platforms below. + **[Lade die vorkompilierte Binärversion herunter](https://github.com/starship/starship/releases)**, wenn du keine der unten gelisteten Plattformen verwendest. #### Homebrew @@ -119,7 +123,7 @@ ``` - #### Rust (v1.33 or higher) + #### Rust (v1.33 oder höher) ```sh $ cargo install starship @@ -128,14 +132,14 @@ #### Arch Linux (AUR) - Starship is available on the AUR under the name `starship`. Install it with `yay` or your favorite AUR helper. + Starship ist via AUR unter dem Namen `starship` verfügbar. Installiere es mittels `yay` oder einem AUR-Helfer deiner Wahl. ```sh $ yay -S starship ``` - #### Nix (unstable) + #### Nix (instabil) ```sh $ nix-env --install starship @@ -148,12 +152,23 @@ $ pkg install starship ``` -1. Add the init script to your shell's config file: + + #### Andere Linux x86-64 Plattformen + + Download einer vor-kompilierten ausführbaren Binärdatei und speichern unter: /usr/local/bin/ + + ```sh + $ wget -q --show-progress https://github.com/starship/releases/latest/download/starship-x86_64-unknown-linux-gnu.tar.gz + $ tar xvf starship-x86_64-unknown-linux-gnu.tar.gz + $ sudo mv starship /usr/local/bin/ + ``` + +1. Füge das init-Skript zur Konfigurationsdatei deiner Shell hinzu: #### Bash - Add the following to the end of `~/.bashrc`: + Trage folgendes am Ende der `~/.bashrc` ein: ```sh # ~/.bashrc @@ -164,7 +179,7 @@ #### Fish - Add the following to the end of `~/.config/fish/config.fish`: + Trage folgendes am Ende der `~/.config/fish/config.fish` ein: ```sh # ~/.config/fish/config.fish @@ -175,7 +190,7 @@ #### Zsh - Add the following to the end of `~/.zshrc`: + Trage folgendes am Ende der `~/.zshrc` ein: ```sh # ~/.zshrc @@ -183,28 +198,38 @@ eval "$(starship init zsh)" ``` -## 🔧 Configuration -For details on how to configure Starship, check out our [documentation](https://starship.rs/config/). + #### Powershell -## 🤝 Contributing + Trage folgendes am Ende der `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (oder `~/.config/powershell/Microsoft.PowerShell_profile.ps1` auf -Nix) ein: -We are always looking for contributors of **all skill levels**! If you're looking to ease your way into the project, try out a [good first issue](https://github.com/starship/starship/labels/🌱%20good%20first%20issue). + ```sh + # ~\Documents\PowerShell\Profile.ps1 + Invoke-Expression (&starship init powershell) + ``` -### High Priority Needs +## 🔧 Konfiguration -- 👩‍💼 **Product Manager** - - We have a GitHub Project and many unorganized/unprioritized features, as well as ideas that haven't yet been made into issues. Starship needs someone to own the product direction! +Weitere Informationen zur Konfiguration von Starship findest du in unserer [Dokumentation](https://starship.rs/config/). + +## 🤝 Mitwirken + +Wir sind immer auf der Suche nach Helfern **jeder Erfahrungsstufe**! Probleme mit dem Label [„Good first issues“](https://github.com/starship/starship/labels/🌱%20good%20first%20issue) sind der beste Weg, um dich mit dem Projekt vertraut zu machen. + +### Hohe Priorität + +- 👩‍💼 **Produktmanager** + - Wir haben ein GitHub Projekt und viele unorganisierte/-priorisierte Features sowohl in Entwicklung als auch in Planung. Starship braucht jemanden, der die weitere Richtung vorgibt! - 👩‍🎨 **Designer** - - Like making eye-catching websites? Excellent! We are looking to create a beautiful landing page showing off Starship in all its glory. Helping design for Starship's brand is a great opportunity to try out new ideas! -- 👩‍💻 **Rust Developer** - - There is _a lot_ of low-hanging fruit when it comes to writing idiomatic Rust, designing effective Rust architecture, performance optimizations, cross-platform build optimizations, and more! I ([@matchai](https://github.com/matchai)) am a beginner to Rust. Come point us in the right direction! + - Erstellst du gerne schillernde Webseiten? Großartig! Wir wollen eine astreine Homepage, die Starship in all ihrer Glorie preißt. Starships Markendesign zu unterstützen ist ein guter Ort um neue Ideen auszuprobieren! +- 👩‍💻 **Rust-Entwickler** + - Es gibt _so einige_ einfache Gelegenheiten für idiomatischen Rust code, das Designen effektiver Rust Architektur, Performanzoptimierung, plattformübergreifende Build-Optimierungen und vieles mehr! Ich ([@matchai](https://github.com/matchai)) bin neu in Rust. Zeig uns den richtigen Weg! -If you are interested in helping contribute to starship, please take a look at our [Contributing Guide](https://github.com/starship/starship/blob/master/CONTRIBUTING.md). Also, feel free to drop into our [Discord server](https://discord.gg/8Jzqu3T) and say hi. 👋 +Falls du an Starship mitwirken willst, wirf bitte einen Blick auf den [Leitfaden zum Mitwirken](https://github.com/starship/starship/blob/master/CONTRIBUTING.md). Schau auch gerne auf unserem [Discord-Server](https://discord.gg/8Jzqu3T) vorbei. 👋 -### Contributors +### Mitwirkende -Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): +Danke an diese wunderbaren Leute ([emoji-Schlüssel](https://allcontributors.org/docs/en/emoji-key)): @@ -259,28 +284,34 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d (´⌣`ʃƪ)
(´⌣`ʃƪ)

💻 Barnaby Keene
Barnaby Keene

💻 Keith Wade
Keith Wade

💻 ⚠️ + LukeAI
LukeAI

📖 + Zach Mertes
Zach Mertes

💻 📖 ⚠️ + David Knaack
David Knaack

💻 📖 ⚠️ + + + Carl Summers
Carl Summers

📖 -This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! +Dieses Projekt folgt der [all-contributors](https://github.com/all-contributors/all-contributors)-Spezifikation. Beiträge jeglicher Art sind herzlich willkommen! -## 💭 Inspired By +## 💭 Inspiriert durch -Please check out these previous works that helped inspire the creation of starship. 🙏 +Bitte schaue dir diese früheren Projekte an, die dazu beigetragen haben, Starship zu kreieren. 🙏 -- **[denysdovhan/spaceship-prompt](https://github.com/denysdovhan/spaceship-prompt)** - A ZSH prompt for astronauts. +- **[denysdovhan/spaceship-prompt](https://github.com/denysdovhan/spaceship-prompt)** - Ein ZSH-Prompt für Astronauten. -- **[denysdovhan/robbyrussell-node](https://github.com/denysdovhan/robbyrussell-node)** - Cross-shell robbyrussell theme written in JavaScript. +- **[denysdovhan/robbyrussell-node](https://github.com/denysdovhan/robbyrussell-node)** - Ein Shell-übergreifendes und in JavaScript geschriebenes robbyrussell-Theme. -- **[reujab/silver](https://github.com/reujab/silver)** - A cross-shell customizable powerline-like prompt with icons. +- **[reujab/silver](https://github.com/reujab/silver)** - Shell-übergreifendes, anpassbares und Powerline-ähnliches Prompt mit Symbolen.


- Starship rocket icon + Starship Raketen-Symbol

-## 📝 License +## 📝 Lizenz -Copyright © 2019-present, [Starship Contributors](https://github.com/starship/starship/graphs/contributors).
This project is [ISC](https://github.com/starship/starship/blob/master/LICENSE) licensed. +Copyright © 2019-heute [Starship-Mitwirkende](https://github.com/starship/starship/graphs/contributors).
Dieses Projekt ist [ISC](https://github.com/starship/starship/blob/master/LICENSE) lizenziert. diff --git a/docs/fr-FR/README.md b/docs/fr-FR/README.md index 7cd8a78c..6fea1bfd 100644 --- a/docs/fr-FR/README.md +++ b/docs/fr-FR/README.md @@ -1,14 +1,14 @@ --- home: true heroImage: /logo.svg -actionText: Get Started → +actionText: Commencez → actionLink: /guide/ -footer: ISC Licensed | Copyright © 2019-present Starship Contributors +footer: ISC licencié | Copyright © 2019-present Starship Contributors ---
-

Compatibility First

+

Compatibilité d'abord

Works on the most common shells on the most common operating systems. Use it everywhere!

@@ -105,3 +105,13 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors eval "$(starship init zsh)" ``` + + + #### Powershell + + Add the following to the end of `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (or `~/.config/powershell/Microsoft.PowerShell_profile.ps1` on -Nix): + + ```sh + # ~\Documents\PowerShell\Profile.ps1 + Invoke-Expression (&starship init powershell) + ``` diff --git a/docs/fr-FR/advanced-config/README.md b/docs/fr-FR/advanced-config/README.md index d5d27031..95b6df04 100644 --- a/docs/fr-FR/advanced-config/README.md +++ b/docs/fr-FR/advanced-config/README.md @@ -1,18 +1,18 @@ -# Advanced Configuration +# Configuration avancée -While Starship is a versatile shell, sometimes you need to do more than edit `starship.toml` to get it to do certain things. This page details some of the more advanced configuration techniques used in starship. +Alors que Starship est un shell polyvalent, vous devez parfois faire plus que d'éditer `starship.toml` pour le faire les choses. Cette page détaille quelques techniques de configuration avancées qu'on peut utiliser dans starship. ::: warning -The configurations in this section are subject to change in future releases of Starship. +Les configurations de cette section sont sujettes à modification dans les versions à venir de Starship. ::: -## Custom pre-prompt and pre-execution Commands in Bash +## Commandes pré-commande et pré-exécution personnalisées en Bash -Bash does not have a formal preexec/precmd framework like most other shells. Because of this, it is difficult to provide fully customizable hooks in `bash`. However, Starship does give you limited ability to insert your own functions into the prompt-rendering procedure: +Bash n'a pas de cadre officiel préexec/précmd comme la plupart des autres shell du commande. C'est pourquoi il est difficile de fournir des crochets entièrement personnalisables dans `bash`. Cependant, Starship vous donne une capacité limitée à insérer vos propres fonctions dans la procédure de rendu commande : -- To run a custom function right before the prompt is drawn, define a new function and then assign its name to `starship_precmd_user_func`. For example, to draw a rocket before the prompt, you would do +- Pour exécuter une fonction personnalisée juste avant que commande soit dessinée, définissez une nouvelle fonction et assignez son nom à `starship_precmd_user_func`. Par exemple, pour dessiner une fusée avant la commande, vous feriez ```bash function blastoff(){ @@ -21,47 +21,47 @@ function blastoff(){ starship_precmd_user_func="blastoff" ``` -- To run a custom function right before a command runs, you can use the [`DEBUG` trap mechanism](https://jichu4n.com/posts/debug-trap-and-prompt_command-in-bash/). However, you **must** trap the DEBUG signal *before* initializing Starship! Starship can preserve the value of the DEBUG trap, but if the trap is overwritten after starship starts up, some functionality will break. +- Pour exécuter une fonction personnalisée juste avant l'exécution d'une commande, vous pouvez utiliser le [` DEBUG` mécanisme d'interruption ](https://jichu4n.com/posts/debug-trap-and-prompt_command-in-bash/). Cependant, vous **devez** pièger le signal DEBUG *avant* initialisation du Starship ! Starship peut préserver la valeur du piège DEBUG, mais si le piège est écrasé après le démarrage de Starship, certaines fonctionnalités vont casser. ```bash function blastoff(){ echo "🚀" } -trap blastoff DEBUG # Trap DEBUG *before* running starship +trap blastoff DEBUG # Pièger DEBUG *avant* l'initiation de starship eval $(starship init bash) ``` -## Change Window Title +## Modifier le style des fenêtres commande -Some shell prompts will automatically change the window title for you (e.g. to reflect your working directory). Fish even does it by default. Starship does not do this, but it's fairly straightforward to add this functionality to `bash` or `zsh`. +Certaines commandes du shell changeront automatiquement le titre de la fenêtre (par exemple, refléter votre répertoire de travail). Fish le fait par défaut. Starship ne le fait pas, mais il est assez simple d'ajouter cette fonctionnalité à `bash` ou `zsh`. -First, define a window title change function (identical in bash and zsh): +Tout d'abord, définir une fonction de changement de titre de fenêtre (identique en bash et zsh) : ```bash -function set_win_title(){ - echo -ne "\033]0; YOUR_WINDOW_TITLE_HERE \007" +function set_titre_fenetre(){ + echo -ne "\033]0; TON_TITRE_FENETRE_ICI \007" } ``` -You can use variables to customize this title (`$USER`, `$HOSTNAME`, and `$PWD` are popular choices). +Vous pouvez utiliser des variables pour personnaliser ce titre (`$USER`, `$HOSTNAME`, et `$PWD` sont des choix populaires). -In `bash`, set this function to be the precmd starship function: +Dans `bash`, définissez cette fonction comme la fonction précmd Starship : ```bash -starship_precmd_user_func="set_win_title" +starship_precmd_user_func="set_titre_gagnante" ``` -In `zsh`, add this to the `precmd_functions` array: +Dans `zsh`, ajoutez ceci au tableau `precmd_functions` : ```bash -precmd_functions+=(set_win_title) +précmd_functions+=(set_titre_gagnant) ``` -If you like the result, add these lines to your shell configuration file (`~/.bashrc` or `~/.zsrhc`) to make it permanent. +Si vous aimez le résultat, ajoutez ces lignes à votre fichier de configuration de shell (`~/.bashrc` ou `~/.zsrhc`) pour le rendre permanent. -## Style Strings +## Chaînes de style -Style strings are a list of words, separated by whitespace. The words are not case sensitive (i.e. `bold` and `BoLd` are considered the same string). Each word can be one of the following: +Les chaînes de style sont une liste de mots, séparés par des espaces blancs. Les mots ne sont pas sensibles à la casse (` bold ` et ` boLd ` sont considérés comme la même string). Chaque mot peut être l'un des suivants : - `bold` - `underline` @@ -71,14 +71,14 @@ Style strings are a list of words, separated by whitespace. The words are not ca - `` - `none` -where `` is a color specifier (discussed below). `fg:` and `` currently do the same thing , though this may change in the future. The order of words in the string does not matter. +où `` est un spécificateur de couleur (discuté ci-dessous). `fg:` et `` font actuellement la même chose , bien que cela puisse changer dans le futur. L'ordre des mots dans le string n'a pas d'importance. -The `none` token overrides all other tokens in a string, so that e.g. `fg:red none fg:blue` will still create a string with no styling. It may become an error to use `none` in conjunction with other tokens in the future. +Le jeton ` none ` remplace tous les autres jetons d'une string, de sorte que, par exemple, ` fg: red none fg: blue ` créera toujours une string sans style. Il peut devenir une erreur d'utiliser `none` en conjonction avec d'autres jetons dans le futur. -A color specifier can be one of the following: +Un spécificateur de couleur peut être l'un des éléments suivants : - - One of the standard terminal colors: `black`, `red`, `green`, `blue`, `yellow`, `purple`, `cyan`, `white`. You can optionally prefix these with `bright-` to get the bright version (e.g. `bright-white`). - - A `#` followed by a six-digit hexadecimal number. This specifies an [RGB color hex code](https://www.w3schools.com/colors/colors_hexadecimal.asp). - - A number between 0-255. This specifies an [8-bit ANSI Color Code](https://i.stack.imgur.com/KTSQa.png). + - Une des couleurs standard du terminal : `black`, `red`, `green`, `blue`, `yellow`, `purple`, `cyan`, `white`. Vous pouvez éventuellement les préfixer avec `bright-` pour obtenir la version lumineuse (par exemple `bright-white`). + - Un `#` suivi d'un nombre hexadécimal de six chiffres. Ceci spécifie un [ Code hexadécimal de couleur RVB ](https://www.w3schools.com/colors/colors_hexadecimal.asp). + - Un nombre entre 0-255. Ceci spécifie un [code de couleur ANSI 8 bits](https://i.stack.imgur.com/KTSQa.png). -If multiple colors are specified for foreground/background, the last one in the string will take priority. +Si plusieurs couleurs sont spécifiées pour le premier plan/arrière-plan, la dernière dans le string prendra la priorité. diff --git a/docs/fr-FR/config/README.md b/docs/fr-FR/config/README.md index 99c57269..358eba51 100644 --- a/docs/fr-FR/config/README.md +++ b/docs/fr-FR/config/README.md @@ -1,39 +1,39 @@ # Configuration -::: tip +::: remarque -🔥 Configuration is currently being worked on. Many new configuration options will be available in coming releases. +🔥 La configuration est en train d'être travaillée. Beaucoup de nouvelles options de configuration seront disponibles dans les prochaines versions. ::: -To get started configuring starship, create the following file: `~/.config/starship.toml`. +Pour commencer à configurer starship, créez le fichier suivant : `~/.config/starship.toml`. ```shell $ touch ~/.config/starship.toml ``` -All configuration for starship is done in this [TOML](https://github.com/toml-lang/toml) file: +Toute la configuration de starship est effectuée dans ce fichier [TOML](https://github.com/toml-lang/toml) : ```toml -# Don't print a new line at the start of the prompt +# N'écrivez pas une nouvelle ligne au début de la console add_newline = false -# Replace the "❯" symbol in the prompt with "➜" -[character] # The name of the module we are configuring is "character" -symbol = "➜" # The "symbol" segment is being set to "➜" +# Remplacez le symbole "❯" dans la console avec "➜" +[character] # Le nom du module que nous configurons est "character" +symbol = "➜" # Le segment "symbol" est mis comme "➜" -# Disable the package module, hiding it from the prompt completely +# Désactivez le module package, le cachant complètement de la console [package] disabled = true ``` -### Terminology +### Terminologie -**Module**: A component in the prompt giving information based on contextual information from your OS. For example, the "nodejs" module shows the version of NodeJS that is currently installed on your computer, if your current directory is a NodeJS project. +**Module**: Un composant dans l'invite donnant des informations basées sur des informations contextuelles à propos de votre Système d'Exploitation. Par exemple, le module "nodejs" montre la version de NodeJS qui est actuellement installée sur votre ordinateur, si votre répertoire actuel est un projet NodeJS. -**Segment**: Smaller sub-components that compose a module. For example, the "symbol" segment in the "nodejs" module contains the character that is shown before the version number (⬢ by default). +**Segment**: Sous-composants plus petits qui composent un module. Par exemple, le segment "symbol" du module "nodejs" contient le caractère qui est affiché avant le numéro de version (⬢ par défaut). -Here is the representation of the node module. In the following example, "symbol" and "version" are segments within it. Every module also has a prefix and suffix that are the default terminal color. +Voici la représentation du module node. Dans l'exemple suivant, "symbol" et "version" sont des segments dans celui-ci. Chaque module a également un préfixe et un suffixe qui sont la couleur par défaut du terminal. ``` [prefix] [symbol] [version] [suffix] @@ -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 diff --git a/docs/fr-FR/guide/README.md b/docs/fr-FR/guide/README.md index f71d6b1e..28109897 100644 --- a/docs/fr-FR/guide/README.md +++ b/docs/fr-FR/guide/README.md @@ -15,10 +15,13 @@ >Packaging status

+ +
+ All Contributors +
-
Website + Site web · Installation · @@ -37,7 +40,7 @@ English  - 日本語 

-## 🍬 Features +## 🍬 Fonctionnalités -- Prompt character turns red if the last command exits with non-zero code -- Current username if not the same as the logged-in user -- Current Java version(`☕`) -- Current Node.js version(`⬢`) -- Current Rust version (`🦀`) -- Current Ruby version (`💎`) -- Current Python version (`🐍`) -- Current Go version (`🐹`) -- Nix-shell environment detection -- Print an environment variable -- Current version of package in current directory (`📦`) +- Le symbole de prompt devient rouge si la dernière commande a retournée un code différent de zéro +- Affiche le nom de l'utilisateur courant s'il est différent de celui connecté +- Version actuelle de Java (`☕`) +- Version actuelle de Node.js (`⬢`) +- Version actuelle de Rust (`🦀`) +- Version actuelle de Ruby (`💎`) +- Version actuelle de Python (`🐍`) +- Version actuelle de Go (`🐹`) +- Détection de l'environnement Nix-shell +- Affiche une variable d'environnement +- Version actuelle du paquet dans le répertoire courant (`📦`) - npm (Node.js) - cargo (Rust) - poetry (Python) -- Current battery level and status -- Current Git branch and rich repo status: - - `=` — conflicting changes - - `⇡` — ahead of remote branch - - `⇣` — behind of remote branch - - `⇕` — diverged changes - - `?` — untracked changes - - `$` — stashed changes - - `!` — modified files - - `+` — added files - - `»` — renamed files - - `✘` — deleted files -- Execution time of the last command if it exceeds the set threshold -- Indicator for jobs in the background (`✦`) -- Current Kubernetes Cluster and Namespace (`☸`) +- Niveau et état actuels de la batterie +- Branche Git actuelle et affichage "riche" du statut du dépôt: + - `=` — Conflits dans les changements + - `⇡` — En avance sur la branche distante + - `⇣` — En retard sur la branche distante + - `⇕` — Changements divergeant + - `?` — Changements non-suivis + - `$` — Changements remisés + - `!` — Fichiers modifiés + - `+` — Fichiers ajoutés + - `»` — Fichiers renommés + - `✘` — Fichiers supprimés +- Temps d'exécution de la dernière commande si elle a excédée la limite +- Indicateur pour les tâches en arrière-plan (`✦`) +- Cluster et namespace Kubernetes actuels (`☸`) +- Current AWS profile (`☁️`) ## 🚀 Installation -### Prerequisites +### Pré-requis -- A [Powerline font](https://github.com/powerline/fonts) installed and enabled in your terminal (for example, try [Fira Code](https://github.com/tonsky/FiraCode)). +- Une [police d'écriture Powerline](https://github.com/powerline/fonts) installée et activée dans votre terminal (Par exemple, essayez [Fira Code](https://github.com/tonsky/FiraCode)). ### Getting Started @@ -148,6 +152,17 @@ $ pkg install starship ``` + + #### Other x86-64 Linux Platforms + + Download a prebuilt binary and place in /usr/local/bin/ + + ```sh + $ wget -q --show-progress https://github.com/starship/starship/releases/latest/download/starship-x86_64-unknown-linux-gnu.tar.gz + $ tar xvf starship-x86_64-unknown-linux-gnu.tar.gz + $ sudo mv starship /usr/local/bin/ + ``` + 1. Add the init script to your shell's config file: @@ -183,6 +198,16 @@ eval "$(starship init zsh)" ``` + + #### Powershell + + Add the following to the end of `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (or `~/.config/powershell/Microsoft.PowerShell_profile.ps1` on -Nix): + + ```sh + # ~\Documents\PowerShell\Profile.ps1 + Invoke-Expression (&starship init powershell) + ``` + ## 🔧 Configuration For details on how to configure Starship, check out our [documentation](https://starship.rs/config/). @@ -259,6 +284,12 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
(´⌣`ʃƪ)
(´⌣`ʃƪ)

💻 Barnaby Keene
Barnaby Keene

💻 Keith Wade
Keith Wade

💻 ⚠️ + LukeAI
LukeAI

📖 + Zach Mertes
Zach Mertes

💻 📖 ⚠️ + David Knaack
David Knaack

💻 📖 ⚠️ + + + Carl Summers
Carl Summers

📖 diff --git a/docs/ja-JP/README.md b/docs/ja-JP/README.md index ab33ff13..145cb9ba 100644 --- a/docs/ja-JP/README.md +++ b/docs/ja-JP/README.md @@ -105,3 +105,13 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors eval "$(starship init zsh)" ``` + + + #### Powershell + + Add the following to the end of `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (or `~/.config/powershell/Microsoft.PowerShell_profile.ps1` on -Nix): + + ```sh + # ~\Documents\PowerShell\Profile.ps1 + Invoke-Expression (&starship init powershell) + ``` diff --git a/docs/ja-JP/config/README.md b/docs/ja-JP/config/README.md index db9dcbde..7ace2a46 100644 --- a/docs/ja-JP/config/README.md +++ b/docs/ja-JP/config/README.md @@ -112,13 +112,13 @@ prompt_order = [ ## AWS -`aws` モジュールは現在のAWSプロファイルが表示されます。 これは`AWS_PROFILE`環境変数に基づいています。 +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. ### オプション | 変数 | デフォルト | 説明 | | ---------- | --------------- | ----------------------------- | -| `symbol` | `"☁️ "` | 現在のAWSプロファイルを表示する前に表示される記号です。 | +| `symbol` | `"☁️ "` | 現在のAWSプロファイルを表示する前に表示される記号です。 | | `style` | `"bold yellow"` | モジュールのスタイルです。 | | `disabled` | `false` | `aws`モジュールを無効にします。 | @@ -138,13 +138,13 @@ symbol = "🅰 " ### オプション -| 変数 | デフォルト | 説明 | -| -------------------- | ------------------------ | ------------------------- | -| `full_symbol` | `"•"` | バッテリーが満タンのときに表示される記号です。 | -| `charging_symbol` | `"⇡"` | バッテリーの充電中に表示される記号です。 | -| `discharging_symbol` | `"⇣"` | バッテリーが放電しているときに表示される記号です。 | -| `display` | [link](#battery-display) | モジュールの閾値とスタイルを表示します。 | -| `disabled` | `false` | `battery`モジュールを無効にします。 | +| 変数 | デフォルト | 説明 | +| -------------------- | ----------------- | ------------------------- | +| `full_symbol` | `"•"` | バッテリーが満タンのときに表示される記号です。 | +| `charging_symbol` | `"⇡"` | バッテリーの充電中に表示される記号です。 | +| `discharging_symbol` | `"⇣"` | バッテリーが放電しているときに表示される記号です。 | +| `display` | [link](#バッテリーの表示) | モジュールの閾値とスタイルを表示します。 | +| `disabled` | `false` | `battery`モジュールを無効にします。 |
いくつかのまれなバッテリー状態のオプションもあります。 @@ -247,12 +247,12 @@ preexecのような機能を必要とするBashユーザーは、 [rcalorasのba ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | --------------- | ---------------------------------------------------------- | -| `min_time` | `2` | 時間を表示する最短期間です。 | -| `prefix` | `took` | Prefix to display immediately before the command duration. | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `cmd_duration` module. | +| 変数 | デフォルト | 説明 | +| ---------- | --------------- | --------------------------- | +| `min_time` | `2` | 時間を表示する最短期間です。 | +| `prefix` | `took` | コマンド実行時間の直前に表示する文字列です。 | +| `style` | `"bold yellow"` | モジュールのスタイルです。 | +| `disabled` | `false` | `cmd_duration`モジュールを無効にします。 | ### 設定例 @@ -266,15 +266,15 @@ prefix = "underwent " ## Conda -The `conda` module shows the current conda environment, if `$CONDA_DEFAULT_ENV` is set. Note: This does not suppress conda's own prompt modifier, you may want to run `conda config --set changeps1 False` +`$CONDA_DEFAULT_ENV`が設定されている場合、`conda`モジュールは現在のcondaの環境を表示します。 Note: This does not suppress conda's own prompt modifier, you may want to run `conda config --set changeps1 False` ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | -------------- | -------------------------------------------- | -| `symbol` | `"C "` | The symbol used before the environment name. | -| `style` | `"bold green"` | The style for the module. | -| `disabled` | `false` | Disables the `conda` module. | +| 変数 | デフォルト | 説明 | +| ---------- | -------------- | -------------------- | +| `symbol` | `"C "` | 環境名の直前に使用されるシンボルです。 | +| `style` | `"bold green"` | モジュールのスタイルです。 | +| `disabled` | `false` | `conda`モジュールを無効にします。 | ### 設定例 @@ -285,30 +285,30 @@ The `conda` module shows the current conda environment, if `$CONDA_DEFAULT_ENV` style = "dimmed green" ``` -## Directory +## ディレクトリ -The `directory` module shows the path to your current directory, truncated to three parent folders. Your directory will also be truncated to the root of the git repo that you're currently in. +`directory`モジュールには、現在のディレクトリへのパスが表示され、3つの親フォルダは切り捨てられます。 ディレクトリは、現在のgitリポジトリであるとルートとなります。 -When using the fish style pwd option, instead of hiding the path that is truncated, you will see a shortened name of each directory based on the number you enable for the option. +fishスタイルのpwdオプションを使用すると、切り捨てられたパスを非表示にする代わりに、オプションで有効にした番号に基づいて各ディレクトリの短縮名が表示されます。 -For example, given `~/Dev/Nix/nixpkgs/pkgs` where `nixpkgs` is the repo root, and the option set to `1`. You will now see `~/D/N/nixpkgs/pkgs`, whereas before it would have been `nixpkgs/pkgs`. +例として、`~/Dev/Nix/nixpkgs/pkgs`で、`nixpkgs`がリポジトリルートであり、オプションが`1`に設定されている場合を挙げます。 以前は`nixpkgs/pkgs`でしたが、`~/D/N/nixpkgs/pkgs`が表示されます。 ### オプション -| 変数 | デフォルト | 説明 | -| ------------------- | ------------- | -------------------------------------------------------------------------------- | -| `truncation_length` | `3` | The number of parent folders that the current directory should be truncated to. | -| `truncate_to_repo` | `true` | Whether or not to truncate to the root of the git repo that you're currently in. | -| `style` | `"bold cyan"` | The style for the module. | -| `disabled` | `false` | Disables the `directory` module. | +| 変数 | デフォルト | 説明 | +| ------------------- | ------------- | ----------------------------- | +| `truncation_length` | `3` | 現在のディレクトリを切り捨てる親フォルダーの数です。 | +| `truncate_to_repo` | `true` | 現在いるgitリポジトリのルートに切り捨てるかどうかです。 | +| `style` | `"bold cyan"` | モジュールのスタイルです。 | +| `disabled` | `false` | `directory`モジュールを無効にします。 |
-This module has a few advanced configuration options that control how the directory is displayed. +このモジュールは、どのようにディレクトリを表示するかについての高度なオプションをいくつか持っています。 -| 変数 | デフォルト | 説明 | -| --------------------------- | ------ | ---------------------------------------------------------------------------------------- | -| `fish_style_pwd_dir_length` | `0` | The number of characters to use when applying fish shell pwd path logic. | -| `use_logical_path` | `true` | Displays the logical path provided by the shell (`PWD`) instead of the path from the OS. | +| 変数 | デフォルト | 説明 | +| --------------------------- | ------ | -------------------------------------------- | +| `fish_style_pwd_dir_length` | `0` | fish shellのpwdパスロジックを適用するときに使用する文字数です。 | +| `use_logical_path` | `true` | OSからのパスの代わりに、シェル(`PWD`) によって提供される論理パスを表示します。 |
@@ -323,20 +323,20 @@ truncation_length = 8 ## Dotnet -The `dotnet` module shows the relevant version of the .NET Core SDK for the current directory. If the SDK has been pinned in the current directory, the pinned version is shown. Otherwise the module shows the latest installed version of the SDK. +`dotnet` モジュールはカレントディレクトリに関係する.NET Core SDKのバージョンを表示します。 If the SDK has been pinned in the current directory, the pinned version is shown. Otherwise the module shows the latest installed version of the SDK. This module will only be shown in your prompt when one of the following files are present in the current directory: `global.json`, `project.json`, `*.sln`, `*.csproj`, `*.fsproj`, `*.xproj`. You'll also need the .NET Core command-line tools installed in order to use it correctly. -Internally, this module uses its own mechanism for version detection. Typically it is twice as fast as running `dotnet --version`, but it may show an incorrect version if your .NET project has an unusual directory layout. If accuracy is more important than speed, you can disable the mechanism by setting `heuristic = false` in the module options. +内部的に、このモジュールは自身のバージョン検知のメカニズムを利用します。 Typically it is twice as fast as running `dotnet --version`, but it may show an incorrect version if your .NET project has an unusual directory layout. If accuracy is more important than speed, you can disable the mechanism by setting `heuristic = false` in the module options. ### オプション -| 変数 | デフォルト | 説明 | -| ----------- | ------------- | -------------------------------------------------------- | -| `symbol` | `"•NET "` | The symbol used before displaying the version of dotnet. | -| `style` | `"bold blue"` | The style for the module. | -| `heuristic` | `true` | Use faster version detection to keep starship snappy. | -| `disabled` | `false` | Disables the `dotnet` module. | +| 変数 | デフォルト | 説明 | +| ----------- | ------------- | ----------------------------------------------------- | +| `symbol` | `•NET "` | dotnetのバージョンを表示する前に使用される記号です。 | +| `style` | `"bold blue"` | モジュールのスタイルです。 | +| `heuristic` | `true` | Use faster version detection to keep starship snappy. | +| `disabled` | `false` | `dotnet`モジュールを無効にします。 | ### 設定例 @@ -349,24 +349,24 @@ style = "green" heuristic = false ``` -## Environment Variable +## 環境変数 -The `env_var` module displays the current value of a selected environment variable. The module will be shown only if any of the following conditions are met: +`env_var`モジュールは、選択された環境変数の現在の値を表示します。 次の条件のいずれかが満たされると、モジュールが表示されます。 - `variable`オプションが、既存の環境変数と一致する - `variable`オプションが定義されておらず、`default`オプションが定義されている ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | ---------------- | ---------------------------------------------------------------------------- | -| `symbol` | | The symbol used before displaying the variable value. | -| `variable` | | The environment variable to be displayed. | -| `default` | | The default value to be displayed when the selected variable is not defined. | -| `prefix` | `""` | Prefix to display immediately before the variable value. | -| `suffix` | `""` | Suffix to display immediately after the variable value. | -| `style` | `"dimmed black"` | The style for the module. | -| `disabled` | `false` | Disables the `env_var` module. | +| 変数 | デフォルト | 説明 | +| ---------- | ---------------- | ------------------------------------- | +| `symbol` | | 環境変数を表示する前に使用される記号です。 | +| `variable` | | 表示される環境変数です。 | +| `default` | | 上のvariableが定義されていない場合に表示されるデフォルトの値です。 | +| `prefix` | `""` | 変数の直前に表示するprefixです。 | +| `suffix` | `""` | 変数の直後に表示するsuffixです。 | +| `style` | `"dimmed black"` | モジュールのスタイルです。 | +| `disabled` | `false` | `env_var`モジュールを無効にします。 | ### 設定例 @@ -378,19 +378,19 @@ variable = "SHELL" default = "unknown shell" ``` -## Git Branch +## Git ブランチ -The `git_branch` module shows the active branch of the repo in your current directory. +`git_branch`モジュールは、現在のディレクトリにあるリポジトリのアクティブなブランチを表示します。 ### オプション -| 変数 | デフォルト | 説明 | -| ------------------- | --------------- | ------------------------------------------------------------------------------------- | -| `symbol` | `" "` | The symbol used before the branch name of the repo in your current directory. | -| `truncation_length` | `2^63 - 1` | Truncates a git branch to X graphemes | -| `truncation_symbol` | `"…"` | The symbol used to indicate a branch name was truncated. You can use "" for no symbol | -| `style` | `"bold purple"` | The style for the module. | -| `disabled` | `false` | Disables the `git_branch` module. | +| 変数 | デフォルト | 説明 | +| ------------------- | --------------- | ------------------------------------------- | +| `symbol` | `" "` | 現在のディレクトリのリポジトリのブランチ名の前に使用されるシンボルです。 | +| `truncation_length` | `2^63 - 1` | gitブランチをX書記素に切り捨てます。 | +| `truncation_symbol` | `"…"` | ブランチ名切り捨てられていることを示すための記号です。 記号なしに「」も使用できます。 | +| `style` | `"bold purple"` | モジュールのスタイルです。 | +| `disabled` | `false` | `git_branch`モジュールを無効にします。 | ### 設定例 @@ -399,28 +399,28 @@ 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 = "" ``` -## Git State +## Git の進行状態 -The `git_state` module will show in directories which are part of a git repository, and where there is an operation in progress, such as: _REBASING_, _BISECTING_, etc. If there is progress information (e.g., REBASING 3/10), that information will be shown too. +`git_state`モジュールはgitディレクトリの進行状態を表します。 (例: _REBASING_, _BISECTING_, その他) 進捗情報がある場合(例: REBASING 3/10)はその情報も表示されます。 ### オプション -| 変数 | デフォルト | 説明 | -| ------------------ | ------------------ | ---------------------------------------------------------------------------------------------------------------- | -| `rebase` | `"REBASING"` | The text displayed when a `rebase` is in progress. | -| `merge` | `"MERGING"` | The text displayed when a `merge` is in progress. | -| `revert` | `"REVERTING"` | The text displayed when a `revert` is in progress. | -| `cherry_pick` | `"CHERRY-PICKING"` | The text displayed when a `cherry-pick` is in progress. | -| `bisect` | `"BISECTING"` | The text displayed when a `bisect` is in progress. | -| `am` | `"AM"` | The text displayed when an `apply-mailbox` (`git am`) is in progress. | -| `am_or_rebase` | `"AM/REBASE"` | The text displayed when an ambiguous `apply-mailbox` or `rebase` is in progress. | -| `progress_divider` | `"/"` | The symbol or text which will separate the current and total progress amounts. (e.g., `" of "`, for `"3 of 10"`) | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `git_state` module. | +| 変数 | デフォルト | 説明 | +| ------------------ | ------------------ | --------------------------------------------------------- | +| `rebase` | `"REBASING"` | `rebase`進行中に表示されるテキストです。 | +| `merge` | `"MERGING"` | `merge`進行中に表示されるテキストです。 | +| `revert` | `"REVERTING"` | `revert`進行中に表示されるテキストです。 | +| `cherry_pick` | `"CHERRY-PICKING"` | `cherry-pick`進行中に表示されるテキストです。 | +| `bisect` | `"BISECTING"` | `disect`進行中に表示されるテキストです。 | +| `am` | `"AM"` | `apply-mailbox` (`git am`)の進行中に表示されるテキストです。 | +| `am_or_rebase` | `"AM/REBASE"` | あいまいな`apply-mailbox`または`rebase`が進行中のときに表示されるテキストです。 | +| `progress_divider` | `"/"` | 現在の進行量と合計進行量を分ける記号またはテキストです。 (例: `" of "` 、 `"3 of 10"` ) | +| `style` | `"bold yellow"` | モジュールのスタイルです。 | +| `disabled` | `false` | `git_state`モジュールを無効にします。 | ### 設定例 @@ -432,29 +432,29 @@ progress_divider = " of " cherry_pick = "🍒 PICKING" ``` -## Git Status +## Git の状態 -The `git_status` module shows symbols representing the state of the repo in your current directory. +`git_status`モジュールは、現在のディレクトリのリポジトリの状態を表すシンボルを表示します。 ### オプション -| 変数 | デフォルト | 説明 | -| ----------------- | ------------ | ------------------------------------------------------- | -| `conflicted` | `"="` | This branch has merge conflicts. | -| `ahead` | `"⇡"` | This branch is ahead of the branch being tracked. | -| `behind` | `"⇣"` | This branch is behind of the branch being tracked. | -| `diverged` | `"⇕"` | This branch has diverged from the branch being tracked. | -| `untracked` | `"?"` | There are untracked files in the working directory. | -| `stashed` | `"$"` | A stash exists for the local repository. | -| `modified` | `"!"` | There are file modifications in the working directory. | -| `staged` | `"+"` | A new file has been added to the staging area. | -| `renamed` | `"»"` | A renamed file has been added to the staging area. | -| `deleted` | `"✘"` | A file's deletion has been added to the staging area. | -| `show_sync_count` | `false` | Show ahead/behind count of the branch being tracked. | -| `prefix` | `[` | Prefix to display immediately before git status. | -| `suffix` | `]` | Suffix to display immediately after git status. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `git_status` module. | +| 変数 | デフォルト | 説明 | +| ----------------- | ------------ | ------------------------------ | +| `conflicted` | `"="` | このブランチにはマージの競合があります。 | +| `ahead` | `"⇡"` | このブランチは、追跡されるブランチよりも先にあります。 | +| `behind` | `"⇣"` | このブランチは、追跡されているブランチの背後にあります。 | +| `diverged` | `"⇕"` | このブランチは、追跡されているブランチから分岐しています。 | +| `untracked` | `"?"` | 作業ディレクトリに追跡されていないファイルがあります。 | +| `stashed` | `"$"` | ローカルリポジトリ用のスタッシュが存在します。 | +| `modified` | `"!"` | 作業ディレクトリにファイルの変更があります。 | +| `staged` | `"+"` | 新しいファイルがステージング領域に追加されました。 | +| `renamed` | `"»"` | 名前が変更されたファイルがステージング領域に追加されました。 | +| `deleted` | `"✘"` | ファイルの削除がステージング領域に追加されました。 | +| `show_sync_count` | `false` | 追跡されているブランチの先行/後方カウントを表示します。 | +| `prefix` | `[` | このモジュールの先頭に表示される文字列です。 | +| `suffix` | `]` | このモジュールの末尾に表示される文字列です。 | +| `style` | `"bold red"` | モジュールのスタイルです。 | +| `disabled` | `false` | `git_status`モジュールを無効にします。 | ### 設定例 @@ -476,7 +476,7 @@ deleted = "🗑" ## Golang -The `golang` module shows the currently installed version of Golang. The module will be shown if any of the following conditions are met: +`golang`モジュールは、現在インストールされているGolangのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。 - カレントディレクトリに`go.mod`ファイルが含まれている - カレントディレクトリに`go.sum`ファイルが含まれている @@ -488,11 +488,11 @@ The `golang` module shows the currently installed version of Golang. The module ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | ------------- | -------------------------------------------------------- | -| `symbol` | `"🐹 "` | The symbol used before displaying the version of Golang. | -| `style` | `"bold cyan"` | The style for the module. | -| `disabled` | `false` | Disables the `golang` module. | +| 変数 | デフォルト | 説明 | +| ---------- | ------------- | ----------------------------- | +| `symbol` | `"🐹 "` | Golangのバージョンを表示する前に使用される記号です。 | +| `style` | `"bold cyan"` | モジュールのスタイルです。 | +| `disabled` | `false` | `golang`モジュールを無効にします。 | ### 設定例 @@ -503,19 +503,20 @@ The `golang` module shows the currently installed version of Golang. The module symbol = "🏎💨 " ``` -## Hostname +## ホスト名 -The `hostname` module shows the system hostname. +`hostname`モジュールには、システムのホスト名が表示されます。 ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | --------------------- | ---------------------------------------------------- | -| `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. | +| 変数 | デフォルト | 説明 | +| ---------- | --------------------- | --------------------------------------------------------------------------- | +| `ssh_only` | `true` | SSHセッションに接続されている場合にのみホスト名を表示します。 | +| `prefix` | `""` | ホスト名の直前に表示するprefixです。 | +| `suffix` | `""` | ホスト名の直後に表示するsuffixです。 | +| `trim_at` | `"."` | この文字が最初にマッチするまでをホスト名と認識します。 `"."`は最初の. までをホスト名として認識します。 `""`を指定した場合トリムしません。 | +| `style` | `"bold dimmed green"` | モジュールのスタイルです。 | +| `disabled` | `false` | `hostname`モジュールを無効にします。 | ### 設定例 @@ -526,21 +527,22 @@ The `hostname` module shows the system hostname. ssh_only = false prefix = "⟪" suffix = "⟫" +trim_at = ".companyname.com" disabled = false ``` -## Jobs +## ジョブ -The `jobs` module shows the current number of jobs running. The module will be shown only if there are background jobs running. The module will show the number of jobs running if there is more than 1 job, or more than the `threshold` config value, if it exists. +`jobs`モジュールには、実行中のジョブの現在の数が表示されます。 このモジュールは、実行中のバックグラウンドジョブがある場合にのみ表示されます。 1つ以上のジョブがある、または`threshold`に指定した値以上にジョブがある場合は実行中のジョブの数を表示します。 ### オプション -| 変数 | デフォルト | 説明 | -| ----------- | ------------- | ----------------------------------------------------- | -| `symbol` | `"✦"` | The symbol used before displaying the number of jobs. | -| `threshold` | `1` | Show number of jobs if exceeded. | -| `style` | `"bold blue"` | The style for the module. | -| `disabled` | `false` | Disables the `jobs` module. | +| 変数 | デフォルト | 説明 | +| ----------- | ------------- | ---------------------- | +| `symbol` | `"✦"` | ジョブの数を表示する前に使用される記号です。 | +| `threshold` | `1` | 超過した場合、ジョブの数を表示します。 | +| `style` | `"bold blue"` | モジュールのスタイルです。 | +| `disabled` | `false` | `jobs`モジュールを無効にします。 | ### 設定例 @@ -555,22 +557,22 @@ threshold = 4 ## Kubernetes -Displays the current Kubernetes context name and, if set, the namespace from the kubeconfig file. The namespace needs to be set in the kubeconfig file, this can be done via `kubectl config set-context starship-cluster --namespace -astronaut`. If the `$KUBECONFIG` env var is set the module will use that if not it will use the `~/.kube/config`. +現在のKubernetesコンテキスト名と、設定されている場合は、kubeconfigファイルに基づいてネームスペースを表示します。 ネームスペースはkubeconfigファイルで設定する必要があります。`kubectl config set-context starship-cluster --namespace +astronaut`。 `$KUBECONFIG` 環境変数が設定されている場合、モジュールはそれを使用します `~/.kube/config` は使用しません。 ::: tip -This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file. +このモジュールはデフォルトで無効になっています。 有効にするには、設定ファイルで`disabled`を`false`に設定します。 ::: ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | ------------- | --------------------------------------------------- | -| `symbol` | `"☸ "` | The symbol used before displaying the Cluster info. | -| `style` | `"bold blue"` | The style for the module. | -| `disabled` | `true` | Disables the `kubernetes` module | +| 変数 | デフォルト | 説明 | +| ---------- | ------------- | ------------------------- | +| `symbol` | `"☸ "` | クラスタ情報を表示する前に使用される記号です。 | +| `style` | `"bold blue"` | モジュールのスタイルです。 | +| `disabled` | `true` | `Kubernetes`モジュールを無効にします。 | ### 設定例 @@ -584,15 +586,15 @@ disabled = false ``` -## Line Break +## 改行 -The `line_break` module separates the prompt into two lines. +`line_break`モジュールは、プロンプトを2行に分割します。 ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | ------- | ------------------------------------------------------------------ | -| `disabled` | `false` | Disables the `line_break` module, making the prompt a single line. | +| 変数 | デフォルト | 説明 | +| ---------- | ------- | ------------------------------------- | +| `disabled` | `false` | `line_break`モジュールを無効にして、プロンプトを1行にします。 | ### 設定例 @@ -605,17 +607,17 @@ disabled = true ## Nix-shell -The `nix_shell` module shows the nix-shell environment. The module will be shown when inside a nix-shell environment. +`nix_shell`モジュールは、nix-shell環境を示しています。 このモジュールは、nixシェル環境内にあるときに表示されます。 ### オプション -| 変数 | デフォルト | 説明 | -| ------------ | ------------ | ---------------------------------- | -| `use_name` | `false` | Display the name of the nix-shell. | -| `impure_msg` | `impure` | Customize the "impure" msg. | -| `pure_msg` | `pure` | Customize the "pure" msg. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `nix_shell` module. | +| 変数 | デフォルト | 説明 | +| ------------ | ------------ | ------------------------ | +| `use_name` | `false` | nix-shellの名前を表示します。 | +| `impure_msg` | `impure` | impureメッセージをカスタマイズします。 | +| `pure_msg` | `pure` | pureメッセージをカスタマイズします。 | +| `style` | `"bold red"` | モジュールのスタイルです。 | +| `disabled` | `false` | `nix_shell`モジュールを無効にします。 | ### 設定例 @@ -629,28 +631,29 @@ impure_msg = "impure shell" pure_msg = "pure shell" ``` -## Memory Usage +## メモリ使用量 -The `memory_usage` module shows current system memory and swap usage. +`memory_usageモジュールは、現在のシステムメモリとスワップ使用量を示します。

-By default the swap usage is displayed if the total system swap is non-zero. +

デフォルトでは、システムスワップの合計がゼロ以外の場合、スワップ使用量が表示されます。

-::: tip +

::: tip

-This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file. +

このモジュールはデフォルトで無効になっています。 +有効にするには、設定ファイルでdisabled`を`false`に設定します。 ::: ### オプション -| 変数 | デフォルト | 説明 | -| ----------------- | ------------------------ | ------------------------------------------------------------- | -| `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. | +| 変数 | デフォルト | 説明 | +| ----------------- | --------------------- | --------------------------------------------- | +| `show_percentage` | `false` | メモリ使用量を割合で表示します。 | +| `show_swap` | `true` | Display swap usage if total swap is non-zero. | +| `threshold` | `75` | この閾値を超えない限り、メモリ使用率は表示されません。 | +| `symbol` | `"🐏 "` | メモリ使用率を表示する前に使用される記号です。 | +| `style` | `"bold dimmed white"` | モジュールのスタイルです。 | +| `disabled` | `true` | `memory_usage`モジュールを無効にします。 | ### 設定例 @@ -667,18 +670,18 @@ style = "bold dimmed green" ## Java -The `java` module shows the currently installed version of Java. The module will be shown if any of the following conditions are met: +`java`モジュールは、現在インストールされているJavaのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。 -- The current directory contains a `pom.xml`, `build.gradle` or `build.sbt` file +- カレントディレクトリに`pom.xml`, `build.gradle`,もしくは`build.sbt`が含まれている - カレントディレクトリに拡張子が`.java`, `.class`, もしくは`.jar`のファイルが含まれている ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | -------------- | ------------------------------------------------------ | -| `symbol` | `"☕ "` | The symbol used before displaying the version of Java. | -| `style` | `"dimmed red"` | The style for the module. | -| `disabled` | `false` | Disables the `java` module. | +| 変数 | デフォルト | 説明 | +| ---------- | -------------- | --------------------------- | +| `symbol` | `"☕ "` | Javaのバージョンを表示する前に使用される記号です。 | +| `style` | `"dimmed red"` | モジュールのスタイルです。 | +| `disabled` | `false` | `Java`モジュールを無効にします。 | ### 設定例 @@ -691,7 +694,7 @@ symbol = "🌟 " ## NodeJS -The `nodejs` module shows the currently installed version of NodeJS. The module will be shown if any of the following conditions are met: +`nodejs`モジュールは、現在インストールされているNodeJSのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。 - カレントディレクトリに`package.json`ファイルが含まれている - カレントディレクトリに`node_modules`ディレクトリが含まれている @@ -699,11 +702,11 @@ The `nodejs` module shows the currently installed version of NodeJS. The module ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | -------------- | -------------------------------------------------------- | -| `symbol` | `"⬢ "` | The symbol used before displaying the version of NodeJS. | -| `style` | `"bold green"` | The style for the module. | -| `disabled` | `false` | Disables the `nodejs` module. | +| 変数 | デフォルト | 説明 | +| ---------- | -------------- | ----------------------------- | +| `symbol` | `"⬢ "` | NodeJSのバージョンを表示する前に使用される記号です。 | +| `style` | `"bold green"` | モジュールのスタイルです。 | +| `disabled` | `false` | `nodejs`モジュールを無効にします。 | ### 設定例 @@ -714,9 +717,9 @@ The `nodejs` module shows the currently installed version of NodeJS. The module symbol = "🤖 " ``` -## Package Version +## パッケージのバージョン -The `package` module is shown when the current directory is the repository for a package, and shows its current version. The module currently supports `npm`, `cargo`, and `poetry` packages. +`package`モジュールは、現在のディレクトリがパッケージのリポジトリである場合に表示され、現在のバージョンが表示されます。 このモジュールは現在、 `npm` 、 `cargo` 、および`poetry`パッケージをサポートしています。 - **npm** – `npm`パッケージバージョンは、現在のディレクトリにある`package.json`から抽出されます - **cargo** – `cargo`パッケージバージョンは、現在のディレクトリにある`Cargo.toml`から抽出されます。 @@ -726,11 +729,11 @@ The `package` module is shown when the current directory is the repository for a ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | ------------ | ---------------------------------------------------------- | -| `symbol` | `"📦 "` | The symbol used before displaying the version the package. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `package` module. | +| 変数 | デフォルト | 説明 | +| ---------- | ------------ | ---------------------------- | +| `symbol` | `"📦 "` | パッケージのバージョンを表示する前に使用される記号です。 | +| `style` | `"bold red"` | モジュールのスタイルです。 | +| `disabled` | `false` | `package`モジュールを無効にします。 | ### 設定例 @@ -743,13 +746,13 @@ symbol = "🎁 " ## Python -The `python` module shows the currently installed version of Python. +`python`モジュールは、現在インストールされているPythonのバージョンを示します。 -If `pyenv_version_name` is set to `true`, it will display the pyenv version name. +`pyenvversionname`が`true`に設定されている場合 、pyenvでのバージョン名が表示されます 。 -Otherwise, it will display the version number from `python --version` and show the current Python virtual environment if one is activated. +それ以外の場合は、 `python --version`バージョン番号が表示され、アクティブになっている場合は現在のPython仮想環境が表示されます。 -The module will be shown if any of the following conditions are met: +次の条件のいずれかが満たされると、モジュールが表示されます。 - カレントディレクトリに`.python-version`ファイルが含まれている - カレントディレクトリに`requirements.txt`ファイルが含まれている @@ -760,13 +763,13 @@ The module will be shown if any of the following conditions are met: ### オプション -| 変数 | デフォルト | 説明 | -| -------------------- | --------------- | --------------------------------------------------------------------------- | -| `symbol` | `"🐍 "` | The symbol used before displaying the version of Python. | -| `pyenv_version_name` | `false` | Use pyenv to get Python version | -| `pyenv_prefix` | `"pyenv "` | Prefix before pyenv version display (default display is `pyenv MY_VERSION`) | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `python` module. | +| 変数 | デフォルト | 説明 | +| -------------------- | --------------- | ---------------------------------------------------- | +| `symbol` | `"🐍 "` | Pythonのバージョンを表示する前に使用される記号です。 | +| `pyenv_version_name` | `false` | pyenvを使用してPythonバージョンを取得します | +| `pyenv_prefix` | `"pyenv "` | pyenvバージョン表示の前のprefix(デフォルトの表示は`pyenv MY_VERSION`)です | +| `style` | `"bold yellow"` | モジュールのスタイルです。 | +| `disabled` | `false` | `python`モジュールを無効にします。 | ### 設定例 @@ -781,18 +784,18 @@ pyenv_prefix = "foo " ## Ruby -The `ruby` module shows the currently installed version of Ruby. The module will be shown if any of the following conditions are met: +`ruby`モジュールは、現在インストールされているRubyのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。 - カレントディレクトリに`Gemfile`ファイルが含まれている - カレントディレクトリに`.rb`の拡張子のファイルが含まれている ### オプション -| 変数 | デフォルト | 説明 | -| ---------- | ------------ | ------------------------------------------------------ | -| `symbol` | `"💎 "` | The symbol used before displaying the version of Ruby. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `ruby` module. | +| 変数 | デフォルト | 説明 | +| ---------- | ------------ | --------------------------- | +| `symbol` | `"💎 "` | Rubyのバージョンを表示する前に使用される記号です。 | +| `style` | `"bold red"` | モジュールのスタイルです。 | +| `disabled` | `false` | `ruby`モジュールを無効にします。 | ### 設定例 @@ -805,20 +808,20 @@ symbol = "🔺 " ## Rust -The `rust` module shows the currently installed version of Rust. The module will be shown if any of the following conditions are met: +`rust`モジュールには、現在インストールされているRustのバージョンが表示されます。 次の条件のいずれかが満たされると、モジュールが表示されます。 - カレントディレクトリに`Cargo.toml`ファイルが含まれている - カレントディレクトリに`.rs`の拡張子のファイルが含まれている -### Options +### オプション -| Variable | Default | Description | -| ---------- | ------------ | ------------------------------------------------------ | -| `symbol` | `"🦀 "` | The symbol used before displaying the version of Rust. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `rust` module. | +| 変数 | デフォルト | 説明 | +| ---------- | ------------ | --------------------------- | +| `symbol` | `"🦀 "` | Rustのバージョンを表示する前に使用される記号です。 | +| `style` | `"bold red"` | モジュールのスタイルです。 | +| `disabled` | `false` | `rust`モジュールを無効にします。 | -### Example +### 設定例 ```toml # ~/.config/starship.toml @@ -827,19 +830,19 @@ The `rust` module shows the currently installed version of Rust. The module will symbol = "⚙️ " ``` -## Time +## 時刻 -The `time` module shows the current **local** time. The `format` configuration value is used by the [`chrono`](https://crates.io/crates/chrono) crate to control how the time is displayed. Take a look [at the chrono strftime docs](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html) to see what options are available. +`time`モジュールは、現在の**現地**時間を示します。 `format`設定は、時間の表示方法を制御するために[`chrono`](https://crates.io/crates/chrono)クレートによって使用されます。 使用可能なオプションを確認するには、[chrono strftimeのドキュメント](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html)をご覧ください。 ::: tip -This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file. +このモジュールはデフォルトで無効になっています。 有効にするには、設定ファイルで`disabled`を`false`に設定します。 ::: -### Options +### オプション -| Variable | Default | Description | +| 変数 | デフォルト | 説明 | | ----------------- | ------------- | ------------------------------------------------------------------------------------------------------------------- | | `12hr` | `false` | Enables 12 hour formatting | | `format` | see below | The [chrono format string](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html) used to format the time. | @@ -847,9 +850,9 @@ This module is disabled by default. To enable it, set `disabled` to `false` in y | `disabled` | `true` | Disables the `time` module. | | `utc_time_offset` | `local` | Sets the UTC offset to use. Range from -24 < x < 24. Allows floats to accommodate 30/45 minute timezone offsets. | -If `use_12hr` is `true`, then `format` defaults to `"%r"`. Otherwise, it defaults to `"%T"`. Manually setting `format` will override the `use_12hr` setting. +`use_12hr`が`true`の場合、`format`のデフォルトは`"%r"`です。 それ以外の場合、デフォルトは`"%T"`です。 Manually setting `format` will override the `use_12hr` setting. -### Example +### 設定例 ```toml # ~/.config/starship.toml @@ -860,25 +863,25 @@ format = "🕙[ %T ]" utc_time_offset = -5 ``` -## Username +## ユーザー名 -The `username` module shows active user's username. The module will be shown if any of the following conditions are met: +`username`モジュールはアクティブなユーザーのユーザー名を表示します。 次の条件のいずれかが満たされると、モジュールが表示されます。 - カレントユーザーがroot - カレントユーザーが、ログインしているユーザーとは異なる - ユーザーがSSHセッションとして接続されている - `show_always`変数がtrueに設定されている -### Options +### オプション -| Variable | Default | Description | -| ------------- | --------------- | ------------------------------------- | -| `style_root` | `"bold red"` | The style used when the user is root. | -| `style_user` | `"bold yellow"` | The style used for non-root users. | -| `show_always` | `false` | Always shows the `username` module. | -| `disabled` | `false` | Disables the `username` module. | +| Variable | Default | Description | +| ------------- | --------------- | ------------------------- | +| `style_root` | `"bold red"` | ユーザーがrootのときに使用されるスタイルです。 | +| `style_user` | `"bold yellow"` | 非rootユーザーに使用されるスタイルです。 | +| `show_always` | `false` | `username`モジュールを常に表示します。 | +| `disabled` | `false` | `username`モジュールを無効にします。 | -### Example +### 設定例 ```toml # ~/.config/starship.toml diff --git a/docs/ja-JP/guide/README.md b/docs/ja-JP/guide/README.md index 839dc768..cda11c4c 100644 --- a/docs/ja-JP/guide/README.md +++ b/docs/ja-JP/guide/README.md @@ -15,10 +15,13 @@ >Packaging status

+ +
+ All Contributors + English  - 日本語  (´⌣`ʃƪ)
(´⌣`ʃƪ)

💻 Barnaby Keene
Barnaby Keene

💻 Keith Wade
Keith Wade

💻 ⚠️ + LukeAI
LukeAI

📖 + Zach Mertes
Zach Mertes

💻 📖 ⚠️ + David Knaack
David Knaack

💻 📖 ⚠️ + + + Carl Summers
Carl Summers

📖 -This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! +このプロジェクトは [all-contributors](https://github.com/all-contributors/all-contributors) の仕様に従っています。 どんな種類の貢献でもお待ちしています! ## 💭影響を受けたプロダクト -Please check out these previous works that helped inspire the creation of starship. 🙏 +よければStarship の作成に影響を与えた、これまでのプロジェクトをチェックしてください 🙏 - **[denysdovhan/spaceship-prompt](https://github.com/denysdovhan/spaceship-prompt)** - 宇宙飛行士のための ZSH プロンプト。 @@ -283,4 +314,4 @@ Please check out these previous works that helped inspire the creation of starsh ## 📝 ライセンス -Copyright © 2019-present, [Starship Contributors](https://github.com/starship/starship/graphs/contributors).
This project is [ISC](https://github.com/starship/starship/blob/master/LICENSE) licensed. +Copyright © 2019-present, [Starship Contributors](https://github.com/starship/starship/graphs/contributors).
このプロジェクトは [ISC](https://github.com/starship/starship/blob/master/LICENSE) でライセンスされています。 diff --git a/docs/ru-RU/README.md b/docs/ru-RU/README.md index 7cd8a78c..f85f4c97 100644 --- a/docs/ru-RU/README.md +++ b/docs/ru-RU/README.md @@ -105,3 +105,13 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors eval "$(starship init zsh)" ``` + + + #### Powershell + + Add the following to the end of `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (or `~/.config/powershell/Microsoft.PowerShell_profile.ps1` on -Nix): + + ```sh + # ~\Documents\PowerShell\Profile.ps1 + Invoke-Expression (&starship init powershell) + ``` diff --git a/docs/ru-RU/config/README.md b/docs/ru-RU/config/README.md index 99c57269..20160794 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 diff --git a/docs/ru-RU/guide/README.md b/docs/ru-RU/guide/README.md index f71d6b1e..94428f0c 100644 --- a/docs/ru-RU/guide/README.md +++ b/docs/ru-RU/guide/README.md @@ -15,10 +15,13 @@ >Packaging status

+ +
+ All Contributors + English  - 日本語  (´⌣`ʃƪ)
(´⌣`ʃƪ)

💻 Barnaby Keene
Barnaby Keene

💻 Keith Wade
Keith Wade

💻 ⚠️ + LukeAI
LukeAI

📖 + Zach Mertes
Zach Mertes

💻 📖 ⚠️ + David Knaack
David Knaack

💻 📖 ⚠️ + + + Carl Summers
Carl Summers

📖 diff --git a/docs/zh-CN/README.md b/docs/zh-CN/README.md index 7cd8a78c..38c0329e 100644 --- a/docs/zh-CN/README.md +++ b/docs/zh-CN/README.md @@ -1,23 +1,23 @@ --- home: true heroImage: /logo.svg -actionText: Get Started → +actionText: 入门 → actionLink: /guide/ footer: ISC Licensed | Copyright © 2019-present Starship Contributors ---

-

Compatibility First

-

Works on the most common shells on the most common operating systems. Use it everywhere!

+

注重兼容性

+

能在各种常见的 Shell 上运行。 尝试着在各种地方使用它吧!

-

Rust-Powered

-

Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible.

+

Rust 制造

+

具有 Rust 独树一帜的速度与安全性。

-

Customizable

-

Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be.

+

可自定义

+

每个小细节都可以按您喜欢的自定义,不论是最小化以求速度,还是最大化以获得最完善的功能。

@@ -28,11 +28,11 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors
-### Quick Install +### 快速安装 -1. Install the **starship** binary: +1. 安装 **starship** 二进制文件: - **[Download archives of precompiled binaries](https://github.com/starship/starship/releases)** if you don't use the platforms below. + 如果您不使用下面的平台,你可以**[下载预编译的可执行文件](https://github.com/starship/starship/releases)** #### Homebrew @@ -51,7 +51,7 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors #### Arch Linux (AUR) - Starship is available on the AUR under the name `starship`. Install it with `yay` or your favorite AUR helper. + Starship可在AUR下以 `starship`"之名使用 使用`yay`或你最偏爱的AUR helper来安装。 ```sh $ yay -S starship @@ -71,12 +71,12 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors $ pkg install starship ``` -1. Add the init script to your shell's config file: +1. 将初始化脚本添加到您的 shell 的配置文件: #### Bash - Add the following to the end of `~/.bashrc`: + 在 `~/.bashhrc` 的最后,添加以下内容: ```sh # ~/.bashrc @@ -87,7 +87,7 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors #### Fish - Add the following to the end of `~/.config/fish/config.fish`: + 在 `~/.config/fish/config.fish` 的最后,添加以下内容: ```sh # ~/.config/fish/config.fish @@ -98,10 +98,20 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors #### Zsh - Add the following to the end of `~/.zshrc`: + 在 `~/.zshrc` 的最后,添加以下内容: ```sh # ~/.zshrc eval "$(starship init zsh)" ``` + + + #### Powershell + + 添加 `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (或者`~/.config/powershell/Microsoft.PowerShell_profile.ps1` on -Nix)到: + + ```sh + # ~\Documents\PowerShell\Profile.ps1 + Invoke-Expression (&starship init powershell) + ``` diff --git a/docs/zh-CN/advanced-config/README.md b/docs/zh-CN/advanced-config/README.md index d5d27031..efd22041 100644 --- a/docs/zh-CN/advanced-config/README.md +++ b/docs/zh-CN/advanced-config/README.md @@ -1,10 +1,10 @@ -# Advanced Configuration +# 高级配置 While Starship is a versatile shell, sometimes you need to do more than edit `starship.toml` to get it to do certain things. This page details some of the more advanced configuration techniques used in starship. ::: warning -The configurations in this section are subject to change in future releases of Starship. +本节所述的配置内容可能随 Starship 未来版本的更新而改变。 ::: @@ -31,7 +31,7 @@ trap blastoff DEBUG # Trap DEBUG *before* running starship eval $(starship init bash) ``` -## Change Window Title +## 更改窗口标题 Some shell prompts will automatically change the window title for you (e.g. to reflect your working directory). Fish even does it by default. Starship does not do this, but it's fairly straightforward to add this functionality to `bash` or `zsh`. @@ -59,7 +59,7 @@ precmd_functions+=(set_win_title) If you like the result, add these lines to your shell configuration file (`~/.bashrc` or `~/.zsrhc`) to make it permanent. -## Style Strings +## 样式设定 Style strings are a list of words, separated by whitespace. The words are not case sensitive (i.e. `bold` and `BoLd` are considered the same string). Each word can be one of the following: diff --git a/docs/zh-CN/config/README.md b/docs/zh-CN/config/README.md index 99c57269..da8c8d30 100644 --- a/docs/zh-CN/config/README.md +++ b/docs/zh-CN/config/README.md @@ -1,18 +1,18 @@ -# Configuration +# 配置 ::: tip -🔥 Configuration is currently being worked on. Many new configuration options will be available in coming releases. +Starship 目前正在开发中。 很多新的配置选项将会在之后的版本中被公开。 ::: -To get started configuring starship, create the following file: `~/.config/starship.toml`. +您需要创建配置文件 `~/.config/starship.toml` 以供 Starship 使用。 ```shell $ touch ~/.config/starship.toml ``` -All configuration for starship is done in this [TOML](https://github.com/toml-lang/toml) file: +Starship 的所有配置都在此 [TOML](https://github.com/toml-lang/toml) 配置文件中完成: ```toml # Don't print a new line at the start of the prompt @@ -27,7 +27,7 @@ symbol = "➜" # The "symbol" segment is being set to "➜" disabled = true ``` -### Terminology +### 术语 **Module**: A component in the prompt giving information based on contextual information from your OS. For example, the "nodejs" module shows the version of NodeJS that is currently installed on your computer, if your current directory is a NodeJS project. @@ -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 diff --git a/docs/zh-CN/guide/README.md b/docs/zh-CN/guide/README.md index f71d6b1e..27f5437b 100644 --- a/docs/zh-CN/guide/README.md +++ b/docs/zh-CN/guide/README.md @@ -15,10 +15,13 @@ >Packaging status

+ +
+ All Contributors + English  - 日本語 

-## 🍬 Features +## 🍬 特性 -- Prompt character turns red if the last command exits with non-zero code -- Current username if not the same as the logged-in user -- Current Java version(`☕`) -- Current Node.js version(`⬢`) -- Current Rust version (`🦀`) -- Current Ruby version (`💎`) -- Current Python version (`🐍`) -- Current Go version (`🐹`) -- Nix-shell environment detection -- Print an environment variable -- Current version of package in current directory (`📦`) +- 当上一个命令以非 0 状态退出时,提示字符会变为红色 +- 非当前登录用户的用户名 +- 当前 Java 版本(`☕`) +- 当前 Node.js 版本(`⬢`) +- 当前 Rust 版本 (`🦀`) +- 当前 Ruby 版本 (`💎`) +- 当前 Python 版本 (`🐍`) +- 当前 Go 版本 (`🐹`) +- Nix-shell 环境检测 +- 显示环境变量 +- 当前目录下现在的包版本 (`📦`) - npm (Node.js) - cargo (Rust) - poetry (Python) -- Current battery level and status -- Current Git branch and rich repo status: +- 当前电池剩余容量与状态 +- 当前 Git 分支与一应俱全的仓库状态 - `=` — conflicting changes - `⇡` — ahead of remote branch - `⇣` — behind of remote branch @@ -95,21 +98,22 @@ - `+` — added files - `»` — renamed files - `✘` — deleted files -- Execution time of the last command if it exceeds the set threshold -- Indicator for jobs in the background (`✦`) -- Current Kubernetes Cluster and Namespace (`☸`) +- 如果超过设定阈值,上一个命令的执行时间 +- 后台运行进程数的指示器 (`✦`) +- 当前 Kubernetes Cluster 与 Namespace (`☸`) +- Current AWS profile (`☁️`) -## 🚀 Installation +## 🚀 安装 -### Prerequisites +### 基础要求 -- A [Powerline font](https://github.com/powerline/fonts) installed and enabled in your terminal (for example, try [Fira Code](https://github.com/tonsky/FiraCode)). +- 安装有一个 [Powerline 字体](https://github.com/powerline/fonts) (如 [Fira Code](https://github.com/tonsky/FiraCode)) 并在您的终端启用 。 -### Getting Started +### 入门 -1. Install the **starship** binary: +1. 安装 **starship** 二进制文件: - **[Download archives of precompiled binaries](https://github.com/starship/starship/releases)** if you don't use the platforms below. + 如果您不使用下面的平台,你可以**[下载预编译的可执行文件](https://github.com/starship/starship/releases)** #### Homebrew @@ -128,7 +132,7 @@ #### Arch Linux (AUR) - Starship is available on the AUR under the name `starship`. Install it with `yay` or your favorite AUR helper. + 你可以使用 `starship` 这个名称在 AUR 上找到 Starship。 使用 `yay`或您最喜欢的 AUR helper 安装它。 ```sh $ yay -S starship @@ -148,12 +152,23 @@ $ pkg install starship ``` -1. Add the init script to your shell's config file: + + #### Other x86-64 Linux Platforms + + Download a prebuilt binary and place in /usr/local/bin/ + + ```sh + $ wget -q --show-progress https://github.com/starship/starship/releases/latest/download/starship-x86_64-unknown-linux-gnu.tar.gz + $ tar xvf starship-x86_64-unknown-linux-gnu.tar.gz + $ sudo mv starship /usr/local/bin/ + ``` + +1. 将初始化脚本添加到您的 shell 的配置文件: #### Bash - Add the following to the end of `~/.bashrc`: + 在 `~/.bashhrc` 的最后,添加以下内容: ```sh # ~/.bashrc @@ -164,7 +179,7 @@ #### Fish - Add the following to the end of `~/.config/fish/config.fish`: + 在 `~/.config/fish/config.fish` 的最后,添加以下内容: ```sh # ~/.config/fish/config.fish @@ -175,7 +190,7 @@ #### Zsh - Add the following to the end of `~/.zshrc`: + 在 `~/.zshrc` 的最后,添加以下内容: ```sh # ~/.zshrc @@ -183,26 +198,36 @@ eval "$(starship init zsh)" ``` -## 🔧 Configuration + + #### Powershell + + Add the following to the end of `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (or `~/.config/powershell/Microsoft.PowerShell_profile.ps1` on -Nix): + + ```sh + # ~\Documents\PowerShell\Profile.ps1 + Invoke-Expression (&starship init powershell) + ``` + +## 🔧 配置 For details on how to configure Starship, check out our [documentation](https://starship.rs/config/). -## 🤝 Contributing +## 🤝 贡献 We are always looking for contributors of **all skill levels**! If you're looking to ease your way into the project, try out a [good first issue](https://github.com/starship/starship/labels/🌱%20good%20first%20issue). -### High Priority Needs +### 急需 -- 👩‍💼 **Product Manager** - - We have a GitHub Project and many unorganized/unprioritized features, as well as ideas that haven't yet been made into issues. Starship needs someone to own the product direction! -- 👩‍🎨 **Designer** - - Like making eye-catching websites? Excellent! We are looking to create a beautiful landing page showing off Starship in all its glory. Helping design for Starship's brand is a great opportunity to try out new ideas! -- 👩‍💻 **Rust Developer** - - There is _a lot_ of low-hanging fruit when it comes to writing idiomatic Rust, designing effective Rust architecture, performance optimizations, cross-platform build optimizations, and more! I ([@matchai](https://github.com/matchai)) am a beginner to Rust. Come point us in the right direction! +- 👩‍💼 **项目经理** + - 我们有一个GitHub项目,有许多未经整理或没有被置于优先地位的新功能,还有许多想法没有被列入 issues。 我们需要人来为项目发展方向指路! +- 👩‍🎨 **设计师** + - 想制作吸引人的网站吗? 太棒了! 我们正想要制作一个漂亮的主页,以彰显 Starship 的与众不同。 帮助设计 Starship 的品牌是尝试你新点子的一个巨大机会! +- 👩‍💻 **Rust 开发者** + - 我们需要符合语言习惯的,高效的代码,需要性能优化与跨平台编译优化……你可以在这里收获_大量_的成果! 我 ([@matchai](https://github.com/matchai)) 是一枚 Rust 新手. 快来为我们指点迷津! If you are interested in helping contribute to starship, please take a look at our [Contributing Guide](https://github.com/starship/starship/blob/master/CONTRIBUTING.md). Also, feel free to drop into our [Discord server](https://discord.gg/8Jzqu3T) and say hi. 👋 -### Contributors +### 贡献者 Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): @@ -259,6 +284,12 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
(´⌣`ʃƪ)
(´⌣`ʃƪ)

💻 Barnaby Keene
Barnaby Keene

💻 Keith Wade
Keith Wade

💻 ⚠️ + LukeAI
LukeAI

📖 + Zach Mertes
Zach Mertes

💻 📖 ⚠️ + David Knaack
David Knaack

💻 📖 ⚠️ + + + Carl Summers
Carl Summers

📖 @@ -266,7 +297,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! -## 💭 Inspired By +## 💭该项目受以下项目启发 Please check out these previous works that helped inspire the creation of starship. 🙏 diff --git a/docs/zh-TW/README.md b/docs/zh-TW/README.md index 7cd8a78c..f725a9d0 100644 --- a/docs/zh-TW/README.md +++ b/docs/zh-TW/README.md @@ -2,22 +2,22 @@ home: true heroImage: /logo.svg actionText: Get Started → -actionLink: /guide/ +actionLink: /zh-TW/guide/ footer: ISC Licensed | Copyright © 2019-present Starship Contributors ---
-

Compatibility First

-

Works on the most common shells on the most common operating systems. Use it everywhere!

+

兼容性優先

+

能夠在最常見的作業系統之中最常見的 shell 上運作。 到處使用它吧!

-

Rust-Powered

-

Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible.

+

由 Rust 支持

+

帶來同類最快速度以及 Rust 的安全性,讓你的提示字元盡可能快速與可靠。

-

Customizable

-

Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be.

+

可客製化

+

任何些微的細節都可以隨你喜愛地客製化,讓你的提示字元可以隨你所欲地最小化或是充滿各種特色。

@@ -28,11 +28,11 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors
-### Quick Install +### 快速安裝 -1. Install the **starship** binary: +1. 安裝 **starship** 執行檔: - **[Download archives of precompiled binaries](https://github.com/starship/starship/releases)** if you don't use the platforms below. + 如果你並非使用以下平台,請直接**[下載編譯好的執行檔的壓縮檔](https://github.com/starship/starship/releases)**。 #### Homebrew @@ -42,7 +42,7 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors ``` - #### Rust (v1.33 or higher) + #### Rust (v1.33 或更高版本) ```sh $ cargo install starship @@ -51,14 +51,14 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors #### Arch Linux (AUR) - Starship is available on the AUR under the name `starship`. Install it with `yay` or your favorite AUR helper. + Starship 在 AUR 中已經以 `starship` 這個名字存在。 請使用 `yay` 或你喜歡的 AUR 幫手安裝。 ```sh $ yay -S starship ``` - #### Nix (unstable) + #### Nix (不穩定) ```sh $ nix-env --install starship @@ -71,12 +71,12 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors $ pkg install starship ``` -1. Add the init script to your shell's config file: +1. 將初始化腳本 (script) 加入你的 shell 的設定檔: #### Bash - Add the following to the end of `~/.bashrc`: + 將以下內容放到 `~/.bashrc` 的結尾: ```sh # ~/.bashrc @@ -87,7 +87,7 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors #### Fish - Add the following to the end of `~/.config/fish/config.fish`: + 將以下內容放到 `~/.config/fish/config.fish` 的結尾: ```sh # ~/.config/fish/config.fish @@ -98,10 +98,20 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors #### Zsh - Add the following to the end of `~/.zshrc`: + 將以下內容放到 `~/.zshrc` 的結尾: ```sh # ~/.zshrc eval "$(starship init zsh)" ``` + + + #### Powershell + + 將以下內容放到 `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` 的結尾 (或是在 -Nix 上的 `~/.config/powershell/Microsoft.PowerShell_profile.ps1`): + + ```sh + # ~\Documents\PowerShell\Profile.ps1 + Invoke-Expression (&starship init powershell) + ``` diff --git a/docs/zh-TW/advanced-config/README.md b/docs/zh-TW/advanced-config/README.md index d5d27031..0c118453 100644 --- a/docs/zh-TW/advanced-config/README.md +++ b/docs/zh-TW/advanced-config/README.md @@ -1,18 +1,18 @@ -# Advanced Configuration +# 進階設定 -While Starship is a versatile shell, sometimes you need to do more than edit `starship.toml` to get it to do certain things. This page details some of the more advanced configuration techniques used in starship. +正因為 Starship 是一個多才多藝的 shell,有時候你必須要做比修改 `starship.toml` 更多事情來讓它完成特定工作。 這個頁面說明了一些用於 Starship 的進階設定技巧。 ::: warning -The configurations in this section are subject to change in future releases of Starship. +這個章節內的設定可能會隨著未來 Starship 的版本發行而變動。 ::: -## Custom pre-prompt and pre-execution Commands in Bash +## Bash 中的自定義預提示 (pre-prompt) 與預執行 (pre-execution) 指令 -Bash does not have a formal preexec/precmd framework like most other shells. Because of this, it is difficult to provide fully customizable hooks in `bash`. However, Starship does give you limited ability to insert your own functions into the prompt-rendering procedure: +Bash 不像其他大多的 shell 具有正式的預執行/預指令框架。 因為這個原因,很難在 `bash` 中提供能完全自定義的 hook。 然而,Starship 有提供給你有限的能力來插入你自己的函式到渲染提示字元的程序中: -- To run a custom function right before the prompt is drawn, define a new function and then assign its name to `starship_precmd_user_func`. For example, to draw a rocket before the prompt, you would do +- 為了在畫出提示字元之前執行一個自定義的函式,請定義一個函式,並將它的名稱放入 `starship_precmd_user_func` 之中。 例如,為了要在提示字元前畫出一個火箭,你就要 ```bash function blastoff(){ @@ -21,47 +21,47 @@ function blastoff(){ starship_precmd_user_func="blastoff" ``` -- To run a custom function right before a command runs, you can use the [`DEBUG` trap mechanism](https://jichu4n.com/posts/debug-trap-and-prompt_command-in-bash/). However, you **must** trap the DEBUG signal *before* initializing Starship! Starship can preserve the value of the DEBUG trap, but if the trap is overwritten after starship starts up, some functionality will break. +- 為了要在一個指令前執行一個自定義的函式,你可以使用 [`DEBUG` trap 機制](https://jichu4n.com/posts/debug-trap-and-prompt_command-in-bash/)。 然而,你**必須**在初始化 Starship *之前* 對 DEBUG 訊號設下trap! Starship 可以保留 DEBUG trap 的數值,但是如果該 trap 在 starship 啟動後被被覆寫,某些功能會損壞。 ```bash function blastoff(){ echo "🚀" } -trap blastoff DEBUG # Trap DEBUG *before* running starship +trap blastoff DEBUG # 在 Starship 啟用*前*對 DEBUG 訊號設下 trap eval $(starship init bash) ``` -## Change Window Title +## 改變視窗標題 -Some shell prompts will automatically change the window title for you (e.g. to reflect your working directory). Fish even does it by default. Starship does not do this, but it's fairly straightforward to add this functionality to `bash` or `zsh`. +有些 shell 的提示字元會幫你自動變更視窗標題(例如:為了反映出你目前的工作資料夾)。 Fish 甚至預設就會這樣做。 Starship 沒有幫你這樣做,但是可以用直覺的方式加入這個功能到 `bash` 或 `zsh` 之中。 -First, define a window title change function (identical in bash and zsh): +首先,定義一個改變視窗標題的函式(在 bash 與 zsh 之中都一樣): ```bash function set_win_title(){ - echo -ne "\033]0; YOUR_WINDOW_TITLE_HERE \007" + echo -ne "\033]0; 你的標題在此 \007" } ``` -You can use variables to customize this title (`$USER`, `$HOSTNAME`, and `$PWD` are popular choices). +你可以利用變數來自定義這個標題(`$USER`、`$HOSTNAME` 與 `$PWD` 是很受歡迎的選項)。 -In `bash`, set this function to be the precmd starship function: +在 `bash` 中,將這個函式設定為 Starship 的預執行函式: ```bash starship_precmd_user_func="set_win_title" ``` -In `zsh`, add this to the `precmd_functions` array: +在 `zsh` 中,將這個函式加入 `precmd_functions` 陣列: ```bash precmd_functions+=(set_win_title) ``` -If you like the result, add these lines to your shell configuration file (`~/.bashrc` or `~/.zsrhc`) to make it permanent. +如果你喜歡這個結果,把這幾行加入你的 shell 設定檔中(`~/.bashrc` 或 `~/.zsrhc`)來將此設為永久設定。 -## Style Strings +## 風格字串 -Style strings are a list of words, separated by whitespace. The words are not case sensitive (i.e. `bold` and `BoLd` are considered the same string). Each word can be one of the following: +風格字串是一個以空白分開的單詞清單。 單字並不會區分大小寫(換句話說,`bold` 與 `BoLd` 是被當作兩個相同的字串)。 每個單詞可以是下列其中之一: - `bold` - `underline` @@ -71,14 +71,14 @@ Style strings are a list of words, separated by whitespace. The words are not ca - `` - `none` -where `` is a color specifier (discussed below). `fg:` and `` currently do the same thing , though this may change in the future. The order of words in the string does not matter. +其中 `` 是指定顏色用的(下面解釋)。 `fg:` 與 `` 目前做一樣的事情,不過未來可能會改變。 單詞在字串中的順序不重要。 -The `none` token overrides all other tokens in a string, so that e.g. `fg:red none fg:blue` will still create a string with no styling. It may become an error to use `none` in conjunction with other tokens in the future. +`none` 符號覆寫字串中其他所有符號,所以像是 `fg:red none fg:blue` 會創造出一個沒有任何風格的字串。 未來可能會將 `none` 與其他符號一起使用的情形視為是一種錯誤。 -A color specifier can be one of the following: +一個顏色指定符號可以是下列其中之一: - - One of the standard terminal colors: `black`, `red`, `green`, `blue`, `yellow`, `purple`, `cyan`, `white`. You can optionally prefix these with `bright-` to get the bright version (e.g. `bright-white`). - - A `#` followed by a six-digit hexadecimal number. This specifies an [RGB color hex code](https://www.w3schools.com/colors/colors_hexadecimal.asp). - - A number between 0-255. This specifies an [8-bit ANSI Color Code](https://i.stack.imgur.com/KTSQa.png). + - 任一個標準終端機顏色:`black`、`red`、`green`、`blue`、`yellow`、`purple`、`cyan`、`white`。 你可以選擇性地加上前綴 `bright-` 來取得明亮版本的顏色(例如:`bright-white`)。 + - 一個 `#` 後面跟隨著六位數的十六進位數字。 這個指定了 [RGB 十六進制色碼](https://www.w3schools.com/colors/colors_hexadecimal.asp)。 + - 一個介於 0~255 之間的數字。 這個指定了 [8-bit ANSI 色碼](https://i.stack.imgur.com/KTSQa.png)。 -If multiple colors are specified for foreground/background, the last one in the string will take priority. +如果前景/後景被指定了多種顏色,最後一個顏色具有最高優先性。 diff --git a/docs/zh-TW/config/README.md b/docs/zh-TW/config/README.md index 99c57269..3d1fe869 100644 --- a/docs/zh-TW/config/README.md +++ b/docs/zh-TW/config/README.md @@ -1,83 +1,83 @@ -# Configuration +# 設定 ::: tip -🔥 Configuration is currently being worked on. Many new configuration options will be available in coming releases. +🔥 「設定」現在還在建置中。 許多新的設定選項會在之後的版本釋出。 ::: -To get started configuring starship, create the following file: `~/.config/starship.toml`. +為了開始設定 Starship,請建立下右檔案: `~/.config/starship.toml`. ```shell $ touch ~/.config/starship.toml ``` -All configuration for starship is done in this [TOML](https://github.com/toml-lang/toml) file: +所有關於 Starship 的設定都在這個 [TOML](https://github.com/toml-lang/toml) 檔案內: ```toml -# Don't print a new line at the start of the prompt +# 不要在提示字元的開頭換行 add_newline = false -# Replace the "❯" symbol in the prompt with "➜" -[character] # The name of the module we are configuring is "character" -symbol = "➜" # The "symbol" segment is being set to "➜" +# 把提示字元中的 "❯" 符號換成 "➜" +[character] # 我們正在設定的模組叫做 "character" +symbol = "➜" # 設定 "symbol" 區段為 "➜" -# Disable the package module, hiding it from the prompt completely +# 關閉 package 模組,把它完全從提示字元藏起來 [package] disabled = true ``` -### Terminology +### 術語 -**Module**: A component in the prompt giving information based on contextual information from your OS. For example, the "nodejs" module shows the version of NodeJS that is currently installed on your computer, if your current directory is a NodeJS project. +**模組 (Module)**: 提示字元中的一個元件,基於你的作業系統提供的背景資訊來提供訊息。 舉例來說,如果你現在的資料夾是一個 NodeJS 專案,"nodejs" 模組會顯示出現在安裝在你的電腦上的 NodeJS 版本。 -**Segment**: Smaller sub-components that compose a module. For example, the "symbol" segment in the "nodejs" module contains the character that is shown before the version number (⬢ by default). +**區段 (Segment)**: 組成一個模組的子元件。 舉例來說,"nodejs" 模組內的 "symbol" 區段包含了一個會顯示在版本編號之前的字元 (預設是 ⬢)。 -Here is the representation of the node module. In the following example, "symbol" and "version" are segments within it. Every module also has a prefix and suffix that are the default terminal color. +這是一個 node 模組的表示法。 在下面的例子裡,"symbol" 跟 "version" 都是模組內的區段。 每個模組也包含了使用預設終端機顏色的一個前綴 (prefix) 跟一個後綴 (suffix)。 ``` [prefix] [symbol] [version] [suffix] "via " "⬢" "v10.4.1" "" ``` -### Style Strings +### 風格字串 -Most modules in starship allow you to configure their display styles. This is done with an entry (usually called `style`) which is a string specifying the configuration. Here are some examples of style strings along with what they do. For details on the full syntax, consult the [advanced config guide](/advanced-config/). +Starship 內大多數的模組允許你設定他們的顯示風格。 這要透過一個條目 (通常叫做 `style`),這個條目使用一個字串來進行設定。 這裡給幾個風格字串的例子,以及這些字串的功用。 對於完整語法的詳細說明,請參照 [進階設定指南](/advanced-config/)。 -- `"fg:green bg:blue"` sets green text on a blue background -- `"bg:blue fg:bright-green"` sets bright green text on a blue background -- `"bold fg:27"` sets bold text with [ANSI color](https://i.stack.imgur.com/KTSQa.png) 27 -- `"underline bg:#bf5700"` sets underlined text on a burnt orange background -- `"bold italic fg:purple"` sets bold italic purple text -- `""` explicitly disables all styling +- `"fg:green bg:blue"` 在一個藍色背景上設定綠色文字 +- `"bg:blue fg:bright-green"` 在一個藍色背景上設定亮綠色文字 +- `"bold fg:27"` 設定具有 [ANSI 顏色](https://i.stack.imgur.com/KTSQa.png) 27 號的粗體文字 +- `"underline bg:#bf5700"` 在一個燒橙色背景上設定有底線的文字 +- `"bold italic fg:purple"` 設定粗體、斜體且紫色的文字 +- `""` 明確地關閉所有風格 -Note that what styling looks like will be controlled by your terminal emulator. For example, some terminal emulators will brighten the colors instead of bolding text, and some color themes use the same values for the normal and bright colors. Also, to get italic text, your terminal must support italics. +注意風格產出的樣子取決於你的終端機模擬器。 例如,有些終端機模擬器會提升顏色的亮度而不是讓文字變粗體,而且有些色彩主題對一般與加亮顏色使用的是相同色碼。 除此之外,為了要有斜體字,你的終端機一定要支援斜體。 -## Prompt +## 提示字元 -This is the list of prompt-wide configuration options. +以下是針對提示字元內容的設定。 -### Options +### 選項 -| Variable | Default | Description | -| -------------- | ----------------------------- | ------------------------------------------------------ | -| `add_newline` | `true` | Add a new line before the start of the prompt. | -| `prompt_order` | [link](#default-prompt-order) | Configure the order in which the prompt module occurs. | +| 變數 | 預設 | 說明 | +| -------------- | --------------------------- | ---------------- | +| `add_newline` | `true` | 在提示字元前面加上換行字元。 | +| `prompt_order` | [連結](#default-prompt-order) | 調整各個提示字元模組的顯示順序。 | -### Example +### 範例 ```toml # ~/.config/starship.toml -# Disable the newline at the start of the prompt +# 停用在提示字元前換行的功能 add_newline = false -# Overwrite a default_prompt_order and use custom prompt_order +# 覆寫 default_prompt_order 並使用自訂的 prompt_order prompt_order=["rust","line_break","package","line_break","character"] ``` -### Default Prompt Order +### 預設的提示字元順序 -The default `prompt_order` is used to define the order in which modules are shown in the prompt, if empty or no `prompt_order` is provided. The default is as shown: +預設 `prompt_order` 是用來在 `prompt_order` 為空時或者沒有提供時定義模組顯示在提示字元的順序。 預設如下: ```toml prompt_order = [ @@ -112,17 +112,17 @@ prompt_order = [ ## AWS -The `aws` module shows the current AWS profile. This is based on the `AWS_PROFILE` env var. +`aws` 模組顯示現在 AWS 的區域與概況。 這是根據 `AWS_REGION`、`AWS_DEFAULT_REGION` 與 `AWS_PROFILE` 環境變數及 `~/.aws/config` 檔案。 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | --------------- | ---------------------------------------------------------- | -| `symbol` | `"☁️ "` | The symbol used before displaying the current AWS profile. | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `AWS` module. | +| 變數 | 預設 | 說明 | +| ---------- | --------------- | ------------------ | +| `symbol` | `"☁️ "` | 顯示在目前 AWS 配置之前的符號。 | +| `style` | `"bold yellow"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `AWS` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -132,33 +132,33 @@ style = "bold blue" symbol = "🅰 " ``` -## Battery +## 電池 -The `battery` module shows how charged the device's battery is and its current charging status. The module is only visible when the device's battery is below 10%. +`battery` 模組顯示電池的電量以及現在的充電狀態。 這個模組只會在裝置的電量低於 10% 的時候看見。 -### Options +### 選項 -| Variable | Default | Description | -| -------------------- | ------------------------ | ------------------------------------------------- | -| `full_symbol` | `"•"` | The symbol shown when the battery is full. | -| `charging_symbol` | `"⇡"` | The symbol shown when the battery is charging. | -| `discharging_symbol` | `"⇣"` | The symbol shown when the battery is discharging. | -| `display` | [link](#battery-display) | Display threshold and style for the module. | -| `disabled` | `false` | Disables the `battery` module. | +| 變數 | 預設 | 說明 | +| -------------------- | ---------------------- | ---------------- | +| `full_symbol` | `"•"` | 當電池充飽時顯示的符號。 | +| `charging_symbol` | `"⇡"` | 當電池正在充電時顯示的符號。 | +| `discharging_symbol` | `"⇣"` | 當電池正在放電時顯示的符號。 | +| `display` | [連結](#battery-display) | 顯示的門檻與模組的風格。 | +| `disabled` | `false` | 停用 `battery` 模組。 |
-There are also options for some uncommon battery states. +也有些針對不常見的電池狀態設定的選項。 -| Variable | Description | -| ---------------- | --------------------------------------------------- | -| `unknown_symbol` | The symbol shown when the battery state is unknown. | -| `empty_symbol` | The symbol shown when the battery state is empty. | +| 變數 | 說明 | +| ---------------- | -------------- | +| `unknown_symbol` | 當電池狀態不明時顯示的符號。 | +| `empty_symbol` | 當電池沒電時顯示的符號。 | -Note: Battery indicator will be hidden if the status is `unknown` or `empty` unless you specify the option in the config. +注意:電池指示會在電池狀態`不明`或`沒電`時隱藏起來,除非你在設定之中有特別指定選項。
-### Example +### 範例 ```toml # ~/.config/starship.toml @@ -169,9 +169,9 @@ charging_symbol = "⚡️" discharging_symbol = "💀" ``` -### Battery Display +### 電池顯示 -The `display` configuration option is used to define when the battery indicator should be shown (threshold) and what it looks like (style). If no `display` is provided. The default is as shown: +`display` 設定是用來定義甚麼時候電池指示會顯示出來 (threshold),以及它長甚麼樣子 (style)。 如果沒有提供 `display`。 預設如下: ```toml [[battery.display]] @@ -179,49 +179,49 @@ threshold = 10 style = "bold red" ``` -#### Options +#### 選項 -The `display` option is an array of the following table. +`display` 選項是一個下列表格的陣列。 -| Variable | Description | -| ----------- | ----------------------------------------------- | -| `threshold` | The upper bound for the display option. | -| `style` | The style used if the display option is in use. | +| 變數 | 說明 | +| ----------- | ----------- | +| `threshold` | 顯示選項的上界。 | +| `style` | 顯示選項使用時的風格。 | -#### Example +#### 範例 ```toml -[[battery.display]] # "bold red" style when capacity is between 0% and 10% +[[battery.display]] # 0% 到 10% 電量之間時,使用 "bold red" 風格 threshold = 10 style = "bold red" -[[battery.display]] # "bold yellow" style when capacity is between 10% and 30% +[[battery.display]] # 10% 到 30% 電量之間時,使用 "bold yellow" 風格 threshold = 30 style = "bold yellow" -# when capacity is over 30%, the battery indicator will not be displayed +# 當電量超過 30% 時,電量指示就不會顯示出來 ``` -## Character +## 字元 -The `character` module shows a character (usually an arrow) beside where the text is entered in your terminal. +`character` 模組在你的文字輸入處旁顯示一個字元 (通常是箭頭)。 -The character will tell you whether the last command was successful or not. It can do this in two ways: by changing color (red/green) or by changing its shape (❯/✖). The latter will only be done if `use_symbol_for_status` is set to `true`. +這個字元會告訴你最後的指令是成功還是失敗。 他會用兩種方式告訴你:改變他的顏色 (紅色/綠色) 或是改變他的形狀 (❯/✖)。 後者只會在 `use_symbol_for_status` 被設定為 `true` 時出現。 -### Options +### 選項 -| Variable | Default | Description | -| ----------------------- | -------------- | ----------------------------------------------------------------------------------- | -| `symbol` | `"❯"` | The symbol used before the text input in the prompt. | -| `error_symbol` | `"✖"` | The symbol used before text input if the previous command failed. | -| `use_symbol_for_status` | `false` | Indicate error status by changing the symbol. | -| `vicmd_symbol` | `"❮"` | The symbol used before the text input in the prompt if shell is in vim normal mode. | -| `style_success` | `"bold green"` | The style used if the last command was successful. | -| `style_failure` | `"bold red"` | The style used if the last command failed. | -| `disabled` | `false` | Disables the `character` module. | +| 變數 | 預設 | 說明 | +| ----------------------- | -------------- | ----------------------------------------- | +| `symbol` | `"❯"` | 使用在提示字元文字輸入處前的符號。 | +| `error_symbol` | `"✖"` | 如果前一個指令失敗時,使用在文字輸入處前的符號。 | +| `use_symbol_for_status` | `false` | 是否透過改變符號來提示錯誤狀態。 | +| `vicmd_symbol` | `"❮"` | 如果 shell 正在 vim 正常模式內,在提示字元的文字輸入處前的使用的符號。 | +| `style_success` | `"bold green"` | 最後的指令成功時使用的風格。 | +| `style_failure` | `"bold red"` | 最後的指令失敗時使用的風格。 | +| `disabled` | `false` | 停用 `character` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -232,28 +232,28 @@ error_symbol = "✗" use_symbol_for_status = true ``` -## Command Duration +## 指令持續時間 -The `cmd_duration` module shows how long the last command took to execute. The module will be shown only if the command took longer than two seconds, or the `min_time` config value, if it exists. +`cmd_duration` 模組顯示最後一個指令執行所花費的時間。 這個模組只會在指令花費超過兩秒或是有設定 `min_time` 時,超過設定值時出現。 -::: warning Do not hook the DEBUG trap in Bash +::: warning 不要在 Bash 中設置 DEBUG trap -If you are running Starship in `bash`, do not hook the `DEBUG` trap after running `eval $(starship init $0)`, or this module **will** break. +如果你在 `bash` 中使用 Starship,不要在執行 `eval $(starship init $0)` 之後設置 `DEBUG` trap,不然這個模組**會**壞掉。 ::: -Bash users who need preexec-like functionality can use [rcaloras's bash_preexec framework](https://github.com/rcaloras/bash-preexec). Simply define the arrays `preexec_functions` and `precmd_functions` before running `eval $(starship init $0)`, and then proceed as normal. +想使用類似 preexec 功能的 Bash 使用者可以 [rcaloras 的 bash_preexec 框架](https://github.com/rcaloras/bash-preexec)。 只要在 `eval $(starship init $0)` 之前簡單地定義 `preexec_functions` 與 `precmd_functions` 兩個陣列,然後就可以照常進行。 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | --------------- | ---------------------------------------------------------- | -| `min_time` | `2` | Shortest duration to show time for. | -| `prefix` | `took` | Prefix to display immediately before the command duration. | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `cmd_duration` module. | +| 變數 | 預設 | 說明 | +| ---------- | --------------- | --------------------- | +| `min_time` | `2` | 會顯示的最短時間長度。 | +| `prefix` | `took` | 在指令持續時間正前方顯示的前綴。 | +| `style` | `"bold yellow"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `cmd_duration` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -265,17 +265,17 @@ prefix = "underwent " ## Conda -The `conda` module shows the current conda environment, if `$CONDA_DEFAULT_ENV` is set. Note: This does not suppress conda's own prompt modifier, you may want to run `conda config --set changeps1 False` +如果有設定 `$CONDA_DEFAULT_ENV` 時,`conda` 模組顯示現在 conda 的環境。 注意:這不會抑制 conda 自己的提示字元修飾字,你可能會想執行 `conda config --set changeps1 False`。 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | -------------- | -------------------------------------------- | -| `symbol` | `"C "` | The symbol used before the environment name. | -| `style` | `"bold green"` | The style for the module. | -| `disabled` | `false` | Disables the `conda` module. | +| 變數 | 預設 | 說明 | +| ---------- | -------------- | -------------- | +| `symbol` | `"C "` | 環境名稱前使用的符號。 | +| `style` | `"bold green"` | 模組的風格。 | +| `disabled` | `false` | 停用 `conda` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -284,34 +284,34 @@ The `conda` module shows the current conda environment, if `$CONDA_DEFAULT_ENV` style = "dimmed green" ``` -## Directory +## 資料夾 -The `directory` module shows the path to your current directory, truncated to three parent folders. Your directory will also be truncated to the root of the git repo that you're currently in. +`directory` 模組顯示到現在資料夾的路徑,並裁減到前三層資料夾。 你的資料夾也會被裁減到你所在的 git 儲存庫的根目錄。 -When using the fish style pwd option, instead of hiding the path that is truncated, you will see a shortened name of each directory based on the number you enable for the option. +如果正在使用 fish 風格的 pwd 選項,將不會隱藏被裁減的資料夾,而是會根據你在選項中設定的數字看到每一層資料夾的縮寫。 -For example, given `~/Dev/Nix/nixpkgs/pkgs` where `nixpkgs` is the repo root, and the option set to `1`. You will now see `~/D/N/nixpkgs/pkgs`, whereas before it would have been `nixpkgs/pkgs`. +例如,給定一個右列的路徑 `~/Dev/Nix/nixpkgs/pkgs` 其中 `nixpkgs` 是儲存庫的根目錄,而且該選項被設定為 `1`。 你會看到 `~/D/N/nixpkgs/pkgs`,而在這個設定之前則是 `nixpkgs/pkgs`。 -### Options +### 選項 -| Variable | Default | Description | -| ------------------- | ------------- | -------------------------------------------------------------------------------- | -| `truncation_length` | `3` | The number of parent folders that the current directory should be truncated to. | -| `truncate_to_repo` | `true` | Whether or not to truncate to the root of the git repo that you're currently in. | -| `style` | `"bold cyan"` | The style for the module. | -| `disabled` | `false` | Disables the `directory` module. | +| 變數 | 預設 | 說明 | +| ------------------- | ------------- | ------------------------- | +| `truncation_length` | `3` | 到達現在資料夾的路徑中,要被裁減掉的資料夾數目。 | +| `truncate_to_repo` | `true` | 是否要裁減到你現在所在的 git 儲存庫的根目錄。 | +| `style` | `"bold cyan"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `directory` 模組。 |
-This module has a few advanced configuration options that control how the directory is displayed. +這個模組有些進階設定選項可以控制顯示資料夾。 -| Variable | Default | Description | -| --------------------------- | ------- | ---------------------------------------------------------------------------------------- | -| `fish_style_pwd_dir_length` | `0` | The number of characters to use when applying fish shell pwd path logic. | -| `use_logical_path` | `true` | Displays the logical path provided by the shell (`PWD`) instead of the path from the OS. | +| 變數 | 預設 | 說明 | +| --------------------------- | ------ | ------------------------------------ | +| `fish_style_pwd_dir_length` | `0` | 當使用 fish shell 的 pwd 路徑邏輯時使用的字元數量。 | +| `use_logical_path` | `true` | 顯示 shell (`PWD`) 提供的邏輯路徑,而不是 OS 的路徑。 |
-### Example +### 範例 ```toml # ~/.config/starship.toml @@ -322,22 +322,22 @@ truncation_length = 8 ## Dotnet -The `dotnet` module shows the relevant version of the .NET Core SDK for the current directory. If the SDK has been pinned in the current directory, the pinned version is shown. Otherwise the module shows the latest installed version of the SDK. +`dotnet` 模組顯示現在資料夾使用的 .NET Core SDK 的版本。 如果這個資料夾已經選定一個 SDK,則顯示這個 SDK 的版本。 如果沒有的話,則顯示最新安裝的 SDK 版本。 -This module will only be shown in your prompt when one of the following files are present in the current directory: `global.json`, `project.json`, `*.sln`, `*.csproj`, `*.fsproj`, `*.xproj`. You'll also need the .NET Core command-line tools installed in order to use it correctly. +這個模組只會在下列檔案出現在你的現在資料夾中時,顯示在你的提示字元:`global.json`、`project.json`、`*.sln`、`*.csproj`、`*.fsproj`、`*.xproj`。 你也會需要安裝 .NET Core 文字命令工具來正確使用這個模組。 -Internally, this module uses its own mechanism for version detection. Typically it is twice as fast as running `dotnet --version`, but it may show an incorrect version if your .NET project has an unusual directory layout. If accuracy is more important than speed, you can disable the mechanism by setting `heuristic = false` in the module options. +這個模組內部是使用它自己的機制來偵測版本。 一般來說這個模組有 `dotnet --version` 的兩倍快,但是它可能會在你的 .NET 專案有不尋常的資料夾結構時顯示不正確的版本。 如果精確度比速度更重要的話,你可以藉由設定模組中的 `heuristic = false` 選項來停用這個功能。 -### Options +### 選項 -| Variable | Default | Description | -| ----------- | ------------- | -------------------------------------------------------- | -| `symbol` | `"•NET "` | The symbol used before displaying the version of dotnet. | -| `style` | `"bold blue"` | The style for the module. | -| `heuristic` | `true` | Use faster version detection to keep starship snappy. | -| `disabled` | `false` | Disables the `dotnet` module. | +| 變數 | 預設 | 說明 | +| ----------- | ------------- | ---------------------------- | +| `symbol` | `"•NET "` | 在顯示 dotnet 版本之前用的符號。 | +| `style` | `"bold blue"` | 這個模組的風格。 | +| `heuristic` | `true` | 使用更快速的版本偵測法來保持 starship 的速度。 | +| `disabled` | `false` | 停用 `dotnet` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -348,26 +348,26 @@ style = "green" heuristic = false ``` -## Environment Variable +## 環境變數 -The `env_var` module displays the current value of a selected environment variable. The module will be shown only if any of the following conditions are met: +`env_var`模組顯示一個選擇的環境變數的現在數值。 這個模組只在下列條件其中之一達到時顯示: -- The `variable` configuration option matches an existing environment variable -- The `variable` configuration option is not defined, but the `default` configuration option is +- `variable` 設定選項符合一個存在的環境變數。 +- 沒有設定 `variable` 選項,但是有設定 `default` 選項。 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | ---------------- | ---------------------------------------------------------------------------- | -| `symbol` | | The symbol used before displaying the variable value. | -| `variable` | | The environment variable to be displayed. | -| `default` | | The default value to be displayed when the selected variable is not defined. | -| `prefix` | `""` | Prefix to display immediately before the variable value. | -| `suffix` | `""` | Suffix to display immediately after the variable value. | -| `style` | `"dimmed black"` | The style for the module. | -| `disabled` | `false` | Disables the `env_var` module. | +| 變數 | 預設 | 說明 | +| ---------- | ---------------- | -------------------- | +| `symbol` | | 顯示在變數數值之前的符號。 | +| `variable` | | 要顯示的環境變數。 | +| `default` | | 在選擇的變數值沒有定義時,顯示的預設值。 | +| `prefix` | `""` | 在變數值正前方顯示的前綴。 | +| `suffix` | `""` | 在變數值正後方顯示的後綴。 | +| `style` | `"dimmed black"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `env_var` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -377,51 +377,51 @@ variable = "SHELL" default = "unknown shell" ``` -## Git Branch +## Git 分支 -The `git_branch` module shows the active branch of the repo in your current directory. +`git_branch` 模組顯示現在的資料夾中使用中的儲存庫的分支。 -### Options +### 選項 -| Variable | Default | Description | -| ------------------- | --------------- | ------------------------------------------------------------------------------------- | -| `symbol` | `" "` | The symbol used before the branch name of the repo in your current directory. | -| `truncation_length` | `2^63 - 1` | Truncates a git branch to X graphemes | -| `truncation_symbol` | `"…"` | The symbol used to indicate a branch name was truncated. You can use "" for no symbol | -| `style` | `"bold purple"` | The style for the module. | -| `disabled` | `false` | Disables the `git_branch` module. | +| 變數 | 預設 | 說明 | +| ------------------- | --------------- | -------------------------------- | +| `symbol` | `" "` | 在你現在資料夾之中的儲存庫的分支名稱前使用的符號。 | +| `truncation_length` | `2^63 - 1` | 裁減一個 git 分支到 X 字素 (grapheme)。 | +| `truncation_symbol` | `"…"` | 用來指示分支名稱被縮減的符號。 你可以用 "" 來表示不要顯示。 | +| `style` | `"bold purple"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `git_branch` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml [git_branch] symbol = "🌱 " -truncation_length = "4" +truncation_length = 4 truncation_symbol = "" ``` ## Git State -The `git_state` module will show in directories which are part of a git repository, and where there is an operation in progress, such as: _REBASING_, _BISECTING_, etc. If there is progress information (e.g., REBASING 3/10), that information will be shown too. +`git_state` 模組會顯示在 git 儲存庫中的資料夾內,以及會在有作業正在進行時顯示,像是:_REBASING_、_BISECTING_ 等等。 如果有進展的資訊 (像是 REBASING 3/10),也會一併顯示出來。 -### Options +### 選項 -| Variable | Default | Description | -| ------------------ | ------------------ | ---------------------------------------------------------------------------------------------------------------- | -| `rebase` | `"REBASING"` | The text displayed when a `rebase` is in progress. | -| `merge` | `"MERGING"` | The text displayed when a `merge` is in progress. | -| `revert` | `"REVERTING"` | The text displayed when a `revert` is in progress. | -| `cherry_pick` | `"CHERRY-PICKING"` | The text displayed when a `cherry-pick` is in progress. | -| `bisect` | `"BISECTING"` | The text displayed when a `bisect` is in progress. | -| `am` | `"AM"` | The text displayed when an `apply-mailbox` (`git am`) is in progress. | -| `am_or_rebase` | `"AM/REBASE"` | The text displayed when an ambiguous `apply-mailbox` or `rebase` is in progress. | -| `progress_divider` | `"/"` | The symbol or text which will separate the current and total progress amounts. (e.g., `" of "`, for `"3 of 10"`) | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `git_state` module. | +| 變數 | 預設 | 說明 | +| ------------------ | ------------------ | -------------------------------------------------- | +| `rebase` | `"REBASING"` | `rebase` 進行中顯示的文字。 | +| `merge` | `"MERGING"` | `merge` 進行中顯示的文字。 | +| `revert` | `"REVERTING"` | `revert` 進行中顯示的文字。 | +| `cherry_pick` | `"CHERRY-PICKING"` | `cherry-pick` 進行中顯示的文字。 | +| `bisect` | `"BISECTING"` | `bisect` 進行中顯示的文字。 | +| `am` | `"AM"` | `apply-mailbox` (`git am`) 進行中顯示的文字。 | +| `am_or_rebase` | `"AM/REBASE"` | 當不容易分辨是 `apply-mailbox` 或 `rebase` 正在進行中時顯示的文字。 | +| `progress_divider` | `"/"` | 用來分開現在與總共進度量的符號。 (例如:`" of "` 會得到 `"3 of 10"` 的效果) | +| `style` | `"bold yellow"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `git_state` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -433,29 +433,29 @@ cherry_pick = "🍒 PICKING" ## Git Status -The `git_status` module shows symbols representing the state of the repo in your current directory. +`git_status` 模組顯示用來表示現在資料夾之中儲存庫狀態的符號。 -### Options +### 選項 -| Variable | Default | Description | -| ----------------- | ------------ | ------------------------------------------------------- | -| `conflicted` | `"="` | This branch has merge conflicts. | -| `ahead` | `"⇡"` | This branch is ahead of the branch being tracked. | -| `behind` | `"⇣"` | This branch is behind of the branch being tracked. | -| `diverged` | `"⇕"` | This branch has diverged from the branch being tracked. | -| `untracked` | `"?"` | There are untracked files in the working directory. | -| `stashed` | `"$"` | A stash exists for the local repository. | -| `modified` | `"!"` | There are file modifications in the working directory. | -| `staged` | `"+"` | A new file has been added to the staging area. | -| `renamed` | `"»"` | A renamed file has been added to the staging area. | -| `deleted` | `"✘"` | A file's deletion has been added to the staging area. | -| `show_sync_count` | `false` | Show ahead/behind count of the branch being tracked. | -| `prefix` | `[` | Prefix to display immediately before git status. | -| `suffix` | `]` | Suffix to display immediately after git status. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `git_status` module. | +| 變數 | 預設 | 說明 | +| ----------------- | ------------ | -------------------------------- | +| `conflicted` | `"="` | 這個分支有合併衝突。 | +| `ahead` | `"⇡"` | 這個分支超前正在追蹤的分支。 | +| `behind` | `"⇣"` | 這個分支落後正在追蹤的分支。 | +| `diverged` | `"⇕"` | 這個分支偏離正在追蹤的分支。 | +| `untracked` | `"?"` | 工作資料夾中有沒有追蹤的檔案。 | +| `stashed` | `"$"` | 本地儲存庫有 stash。 | +| `modified` | `"!"` | 工作資料夾中有修改過的檔案。 | +| `staged` | `"+"` | 一個新檔案被加入了暫存區 (staging area)。 | +| `renamed` | `"»"` | 一個被改名的檔案被加入了暫存區 (staging area)。 | +| `deleted` | `"✘"` | 一個刪除檔案的動作被加入了暫存區 (staging area)。 | +| `show_sync_count` | `false` | 顯示超前/落後追蹤的分支的數量。 | +| `prefix` | `[` | 在 git 狀態正前方顯示的前綴。 | +| `suffix` | `]` | 在 git 狀態正後方顯示的後綴。 | +| `style` | `"bold red"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `git_status` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -475,25 +475,25 @@ deleted = "🗑" ## Golang -The `golang` module shows the currently installed version of Golang. The module will be shown if any of the following conditions are met: +`golang` 模組顯示現在安裝的 Golang 版本。 這個模組在下列其中一個條件達成時顯示: -- The current directory contains a `go.mod` file -- The current directory contains a `go.sum` file -- The current directory contains a `glide.yaml` file -- The current directory contains a `Gopkg.yml` file -- The current directory contains a `Gopkg.lock` file -- The current directory contains a `Godeps` directory -- The current directory contains a file with the `.go` extension +- 現在資料夾中含有一個 `go.mod` 檔案 +- 現在資料夾中含有一個 `go.sum` 檔案 +- 現在資料夾中含有一個 `glide.yaml` 檔案 +- 現在資料夾中含有一個 `Gopkg.yml` 檔案 +- 現在資料夾中含有一個 `Gopkg.lock` 檔案 +- 現在資料夾中含有一個 `Godeps` 資料夾 +- 現在資料夾中含有一個檔案具有 `.go` 副檔名 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | ------------- | -------------------------------------------------------- | -| `symbol` | `"🐹 "` | The symbol used before displaying the version of Golang. | -| `style` | `"bold cyan"` | The style for the module. | -| `disabled` | `false` | Disables the `golang` module. | +| 變數 | 預設 | 說明 | +| ---------- | ------------- | ------------------- | +| `symbol` | `"🐹 "` | 顯示在 Golang 版本之前的符號。 | +| `style` | `"bold cyan"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `golang` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -502,21 +502,22 @@ The `golang` module shows the currently installed version of Golang. The module symbol = "🏎💨 " ``` -## Hostname +## 主機名稱 -The `hostname` module shows the system hostname. +`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. | +| 變數 | 預設 | 說明 | +| ---------- | --------------------- | ---------------------------------------------------------- | +| `ssh_only` | `true` | 只在連接到一個 SSH session 時顯示主機名稱。 | +| `prefix` | `""` | 在主機名稱正前方顯示的前綴。 | +| `suffix` | `""` | 在主機名稱正後方顯示的後綴。 | +| `trim_at` | `"."` | 擷取出主機名稱的斷點,以第一個符合的為準。 `"."` 會讓它停在第一個點的符號。 `""` 會停用任何的截斷功能。 | +| `style` | `"bold dimmed green"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `hostname` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -525,23 +526,24 @@ The `hostname` module shows the system hostname. ssh_only = false prefix = "⟪" suffix = "⟫" +trim_at = ".companyname.com" disabled = false ``` -## Jobs +## 工作 -The `jobs` module shows the current number of jobs running. The module will be shown only if there are background jobs running. The module will show the number of jobs running if there is more than 1 job, or more than the `threshold` config value, if it exists. +`jobs` 模組顯示現在正在執行中的工作。 這個模組只會在有背景工作正在執行時顯示。 這個模組會在工作數量超過一個,或者有設定 `threshold` 時且數量超過設定值時,顯示工作的數量。 -### Options +### 選項 -| Variable | Default | Description | -| ----------- | ------------- | ----------------------------------------------------- | -| `symbol` | `"✦"` | The symbol used before displaying the number of jobs. | -| `threshold` | `1` | Show number of jobs if exceeded. | -| `style` | `"bold blue"` | The style for the module. | -| `disabled` | `false` | Disables the `jobs` module. | +| 變數 | 預設 | 說明 | +| ----------- | ------------- | -------------- | +| `symbol` | `"✦"` | 在顯示工作數量之前用的符號。 | +| `threshold` | `1` | 在超過指定值時顯示工作數量。 | +| `style` | `"bold blue"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `jobs` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -554,24 +556,23 @@ threshold = 4 ## Kubernetes -Displays the current Kubernetes context name and, if set, the namespace from the kubeconfig file. The namespace needs to be set in the kubeconfig file, this can be done via `kubectl config set-context starship-cluster --namespace -astronaut`. If the `$KUBECONFIG` env var is set the module will use that if not it will use the `~/.kube/config`. +顯示現在 Kubernetes 主體名稱以及從 kubeconfig 檔案來的名稱空間 (如果有設定的話)。 這個名稱空間必須設定在 kubeconfig 檔案內,你可以透過 `kubectl config set-context starship-cluster --namespace astronaut` 指令做到。 如果有設定 `$KUBECONFIG` 環境變數,這個模組就會使用設定值;如果沒有,它就會使用 `~/.kube/config`。 ::: tip -This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file. +這個模組預設是停用的。 想要啟用它的話,請在設定檔中將 `disabled` 設定為 `false`。 ::: -### Options +### 選項 -| Variable | Default | Description | -| ---------- | ------------- | --------------------------------------------------- | -| `symbol` | `"☸ "` | The symbol used before displaying the Cluster info. | -| `style` | `"bold blue"` | The style for the module. | -| `disabled` | `true` | Disables the `kubernetes` module | +| 變數 | 預設 | 說明 | +| ---------- | ------------- | ------------------------ | +| `symbol` | `"☸ "` | 顯示在叢集 (cluster) 資訊之前的符號。 | +| `style` | `"bold blue"` | 這個模組的風格。 | +| `disabled` | `true` | 停用 `kubernetes` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -583,17 +584,17 @@ disabled = false ``` -## Line Break +## 換行 -The `line_break` module separates the prompt into two lines. +`line_break` 模組將提示字元分成兩行。 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | ------- | ------------------------------------------------------------------ | -| `disabled` | `false` | Disables the `line_break` module, making the prompt a single line. | +| 變數 | 預設 | 說明 | +| ---------- | ------- | ----------------------------- | +| `disabled` | `false` | 停用 `line_break` 模組,讓提示字元變成一行。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -604,19 +605,19 @@ disabled = true ## Nix-shell -The `nix_shell` module shows the nix-shell environment. The module will be shown when inside a nix-shell environment. +`nix_shell` 模組顯示 nix-shell 環境。 這個模組會在 nix-shell 環境中顯示。 -### Options +### 選項 -| Variable | Default | Description | -| ------------ | ------------ | ---------------------------------- | -| `use_name` | `false` | Display the name of the nix-shell. | -| `impure_msg` | `impure` | Customize the "impure" msg. | -| `pure_msg` | `pure` | Customize the "pure" msg. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `nix_shell` module. | +| 變數 | 預設 | 說明 | +| ------------ | ------------ | ------------------ | +| `use_name` | `false` | 顯示 nix-shell 的名稱。 | +| `impure_msg` | `impure` | 自定義「impure」訊息。 | +| `pure_msg` | `pure` | 自定義「pure」訊息。 | +| `style` | `"bold red"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `nix_shell` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -628,30 +629,30 @@ impure_msg = "impure shell" pure_msg = "pure shell" ``` -## Memory Usage +## 記憶體使用量 -The `memory_usage` module shows current system memory and swap usage. +`memory_usage` 模組顯示現在系統記憶體與 swap 的使用量。 -By default the swap usage is displayed if the total system swap is non-zero. +預設 swap 使用量會在系統總 swap 使用量不為 0 時顯示出來。 ::: tip -This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file. +這個模組預設是停用的。 想要啟用它的話,請在設定檔中將 `disabled` 設定為 `false`。 ::: -### 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. | +| 變數 | 預設 | 說明 | +| ----------------- | --------------------- | ----------------------------- | +| `show_percentage` | `false` | 以剩餘記憶體佔有的百分比的方式顯示記憶體使用狀況。 | +| `show_swap` | `true` | 如果總 swap 使用量不為零的話,顯示 swap 使用量 | +| `threshold` | `75` | 將記憶體使用量隱藏,除非使用量超過指定值。 | +| `symbol` | `"🐏 "` | 顯示在記憶體使用量之前的符號。 | +| `style` | `"bold dimmed white"` | 這個模組的風格。 | +| `disabled` | `true` | 停用 `memory_usage` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -666,20 +667,20 @@ style = "bold dimmed green" ## Java -The `java` module shows the currently installed version of Java. The module will be shown if any of the following conditions are met: +`java` 模組顯示現在安裝的 Java 版本。 這個模組在下列其中一個條件達成時顯示: -- The current directory contains a `pom.xml`, `build.gradle` or `build.sbt` file -- The current directory contains a file with the `.java`, `.class` or `.jar` extension +- 現在資料夾中包含一個 `pom.xml`、`build.gradle` 或 `build.sbt` 檔案 +- 現在資料夾中包含一個檔案具有 `.java`、`.class` 或 `.jar` 副檔名 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | -------------- | ------------------------------------------------------ | -| `symbol` | `"☕ "` | The symbol used before displaying the version of Java. | -| `style` | `"dimmed red"` | The style for the module. | -| `disabled` | `false` | Disables the `java` module. | +| 變數 | 預設 | 說明 | +| ---------- | -------------- | ----------------- | +| `symbol` | `"☕ "` | 顯示在 Java 版本之前的符號。 | +| `style` | `"dimmed red"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `java` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -690,21 +691,21 @@ symbol = "🌟 " ## NodeJS -The `nodejs` module shows the currently installed version of NodeJS. The module will be shown if any of the following conditions are met: +`nodejs` 模組顯示現在安裝的 NodeJS 版本。 這個模組在下列其中一個條件達成時顯示: -- The current directory contains a `package.json` file -- The current directory contains a `node_modules` directory -- The current directory contains a file with the `.js` extension +- 現在資料夾中包含一個 `package.json` 檔案 +- 現在資料夾中包含一個 `node_modules` 資料夾 +- 現在資料夾中包含一個檔案具有 `.js` 副檔名 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | -------------- | -------------------------------------------------------- | -| `symbol` | `"⬢ "` | The symbol used before displaying the version of NodeJS. | -| `style` | `"bold green"` | The style for the module. | -| `disabled` | `false` | Disables the `nodejs` module. | +| 變數 | 預設 | 說明 | +| ---------- | -------------- | -------------------- | +| `symbol` | `"⬢ "` | 在顯示 NodeJS 版本之前用的符號。 | +| `style` | `"bold green"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `nodejs` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -713,25 +714,25 @@ The `nodejs` module shows the currently installed version of NodeJS. The module symbol = "🤖 " ``` -## Package Version +## 套件版本 -The `package` module is shown when the current directory is the repository for a package, and shows its current version. The module currently supports `npm`, `cargo`, and `poetry` packages. +The `package` 模組在現在資料夾是一個套件的儲藏庫時出現,並顯示他的現在版本。 這個模組目前支援 `npm`、`cargo` 與 `poetry` 套件。 -- **npm** – The `npm` package version is extracted from the `package.json` present in the current directory -- **cargo** – The `cargo` package version is extracted from the `Cargo.toml` present in the current directory -- **poetry** – The `poetry` package version is extracted from the `pyproject.toml` present in the current directory +- **npm** – `npm` 套件的版本是從現在資料夾中的 `package.json` 之中擷取出來的 +- **cargo** – `cargo` 套件的版本是從現在資料夾中的 `Cargo.toml` 之中擷取出來的 +- **poetry** – `poetry` 套件的版本是從現在資料夾中的 `pyproject.toml` 之中擷取出來的 -> ⚠️ The version being shown is that of the package whose source code is in your current directory, not your package manager. +> ⚠️ 顯示出來的版本是從你的現在資料夾之中擷取出來的,並非從套件管理員取得。 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | ------------ | ---------------------------------------------------------- | -| `symbol` | `"📦 "` | The symbol used before displaying the version the package. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `package` module. | +| 變數 | 預設 | 說明 | +| ---------- | ------------ | ---------------- | +| `symbol` | `"📦 "` | 顯示在套件的版本之前的符號。 | +| `style` | `"bold red"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `package` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -742,32 +743,32 @@ symbol = "🎁 " ## Python -The `python` module shows the currently installed version of Python. +`python` 模組顯示現在安裝的 Python 版本 -If `pyenv_version_name` is set to `true`, it will display the pyenv version name. +如果 `pyenv_version_name` 的值為 `true`, 會顯示 pyenv 內的版本名稱 -Otherwise, it will display the version number from `python --version` and show the current Python virtual environment if one is activated. +要不然就會顯示 `python -version` 的版本和有啟用的 Python 虛擬環境版本 -The module will be shown if any of the following conditions are met: +這個模組在下列任一條件時會顯示: -- The current directory contains a `.python-version` file -- The current directory contains a `requirements.txt` file -- The current directory contains a `pyproject.toml` file -- The current directory contains a file with the `.py` extension -- The current directory contains a `Pipfile` file -- The current directory contains a `tox.ini` file +- 目前資料夾中有一個 `.python-version` 檔案 +- 目前資料夾中有一個 `requirements.txt` 檔案 +- 目前資料夾中有一個 `pyproject.toml` 檔案 +- 目前資料夾中有一個 `.py` 副檔名的檔案 +- 目前資料夾中有一個 `Pipfile` 檔案 +- 目前資料夾中有一個 `tox.ini` 檔案 -### Options +### 選項 -| Variable | Default | Description | -| -------------------- | --------------- | --------------------------------------------------------------------------- | -| `symbol` | `"🐍 "` | The symbol used before displaying the version of Python. | -| `pyenv_version_name` | `false` | Use pyenv to get Python version | -| `pyenv_prefix` | `"pyenv "` | Prefix before pyenv version display (default display is `pyenv MY_VERSION`) | -| `style` | `"bold yellow"` | The style for the module. | -| `disabled` | `false` | Disables the `python` module. | +| 變數 | 預設 | 說明 | +| -------------------- | --------------- | --------------------------------------------- | +| `symbol` | `"🐍 "` | 顯示在 Python 版本之前的符號。 | +| `pyenv_version_name` | `false` | 使用 pyenv 取得 Python 的版本。 | +| `pyenv_prefix` | `"pyenv "` | 顯示在 pyenv 版本之前的前綴 (預設顯示是 `pyenv MY_VERSION`)。 | +| `style` | `"bold yellow"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `python` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -780,20 +781,20 @@ pyenv_prefix = "foo " ## Ruby -The `ruby` module shows the currently installed version of Ruby. The module will be shown if any of the following conditions are met: +`ruby` 模組顯示現在安裝的 Ruby 版本。 這個模組在下列其中一個條件達成時顯示: -- The current directory contains a `Gemfile` file -- The current directory contains a `.rb` file +- 目前資料夾中有一個 `Gemfile` 檔案 +- 目前資料夾中有一個 `.rb` 檔案 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | ------------ | ------------------------------------------------------ | -| `symbol` | `"💎 "` | The symbol used before displaying the version of Ruby. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `ruby` module. | +| 變數 | 預設 | 說明 | +| ---------- | ------------ | ----------------- | +| `symbol` | `"💎 "` | 顯示在 Ruby 版本之前的符號。 | +| `style` | `"bold red"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `ruby` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -804,20 +805,20 @@ symbol = "🔺 " ## Rust -The `rust` module shows the currently installed version of Rust. The module will be shown if any of the following conditions are met: +`rust` 模組顯示現在安裝的 Rust 版本。 這個模組在下列其中一個條件達成時顯示: -- The current directory contains a `Cargo.toml` file -- The current directory contains a file with the `.rs` extension +- 目前資料夾中有一個 `Cargo.toml` 檔案 +- 現在資料夾中包含一個檔案具有 `.rs` 副檔名 -### Options +### 選項 -| Variable | Default | Description | -| ---------- | ------------ | ------------------------------------------------------ | -| `symbol` | `"🦀 "` | The symbol used before displaying the version of Rust. | -| `style` | `"bold red"` | The style for the module. | -| `disabled` | `false` | Disables the `rust` module. | +| 變數 | 預設 | 說明 | +| ---------- | ------------ | ----------------- | +| `symbol` | `"🦀 "` | 顯示在 Rust 版本之前的符號。 | +| `style` | `"bold red"` | 這個模組的風格。 | +| `disabled` | `false` | 停用 `rust` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -826,29 +827,29 @@ The `rust` module shows the currently installed version of Rust. The module will symbol = "⚙️ " ``` -## Time +## 時間 -The `time` module shows the current **local** time. The `format` configuration value is used by the [`chrono`](https://crates.io/crates/chrono) crate to control how the time is displayed. Take a look [at the chrono strftime docs](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html) to see what options are available. +`time` 模組顯示目前的**當地**時間. `format` 設定值被 [`chrono`](https://crates.io/crates/chrono) crate 用來控制時間如何顯示。 請看 [chrono 的 strftime 文件](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html)來了解有那些選項可以使用。 ::: tip -This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file. +這個模組預設是停用的。 想要啟用它的話,請在設定檔中將 `disabled` 設定為 `false`。 ::: -### Options +### 選項 -| Variable | Default | Description | -| ----------------- | ------------- | ------------------------------------------------------------------------------------------------------------------- | -| `12hr` | `false` | Enables 12 hour formatting | -| `format` | see below | The [chrono format string](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html) used to format the time. | -| `style` | `bold yellow` | The style for the module time | -| `disabled` | `true` | Disables the `time` module. | -| `utc_time_offset` | `local` | Sets the UTC offset to use. Range from -24 < x < 24. Allows floats to accommodate 30/45 minute timezone offsets. | +| 變數 | 預設 | 說明 | +| ----------------- | ------------- | -------------------------------------------------------------------------------------- | +| `12hr` | `false` | 啟用 12 小時格式。 | +| `format` | 請看下列 | 用來顯示時間的 [chrono 格式字串](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html)。 | +| `style` | `bold yellow` | 這個模組的時間的風格。 | +| `disabled` | `true` | 停用 `time` 模組。 | +| `utc_time_offset` | `local` | 設定相對於 UTC 的時差。 範圍 -24 < x < 24。 允許使用浮點數來表示 30/45 分鐘時差的時區。 | -If `use_12hr` is `true`, then `format` defaults to `"%r"`. Otherwise, it defaults to `"%T"`. Manually setting `format` will override the `use_12hr` setting. +如果 `use_12hr` 是 `true` 的話,`format` 會被預設為 `"%r"`。 不然的話,它會被預設為 `"%T"`。 手動設定 `format` 的設定值會覆寫 `use_12hr` 的設定。 -### Example +### 範例 ```toml # ~/.config/starship.toml @@ -859,25 +860,25 @@ format = "🕙[ %T ]" utc_time_offset = -5 ``` -## Username +## 使用者名稱 -The `username` module shows active user's username. The module will be shown if any of the following conditions are met: +`username` 模組顯示現在使用中的使用者名稱。 這個模組在下列其中一個條件達成時顯示: -- The current user is root -- The current user isn't the same as the one that is logged in -- The user is currently connected as an SSH session -- The variable `show_always` is set to true +- 目前使用者為 root +- 目前使用者並非登入時的使用者 +- 使用者透過 SSH session 進行連線 +- 變數 `show_always` 被設為 true -### Options +### 選項 -| Variable | Default | Description | -| ------------- | --------------- | ------------------------------------- | -| `style_root` | `"bold red"` | The style used when the user is root. | -| `style_user` | `"bold yellow"` | The style used for non-root users. | -| `show_always` | `false` | Always shows the `username` module. | -| `disabled` | `false` | Disables the `username` module. | +| 變數 | 預設 | 說明 | +| ------------- | --------------- | ------------------- | +| `style_root` | `"bold red"` | 使用者為 root 時使用的風格。 | +| `style_user` | `"bold yellow"` | 非 root 使用者時使用的風格。 | +| `show_always` | `false` | 總是顯示 `username` 模組。 | +| `disabled` | `false` | 停用 `username` 模組。 | -### Example +### 範例 ```toml # ~/.config/starship.toml diff --git a/docs/zh-TW/guide/README.md b/docs/zh-TW/guide/README.md index f71d6b1e..669989f6 100644 --- a/docs/zh-TW/guide/README.md +++ b/docs/zh-TW/guide/README.md @@ -15,10 +15,13 @@ >Packaging status

+ +
+ All Contributors +
-
Website + 網站 · - Installation + 安裝 · - Configuration + 設定

English  - 日本語  -

Starship is the minimal, blazing fast, and extremely customizable prompt for any shell!
The prompt shows information you need while you're working, while staying sleek and out of the way.

+

Starship 是一個可以用於任何 shell、極小、極快、可高度客製化的提示字元!
這個提示字元顯示你工作時需要的資訊,同時又順暢又不會打擾你。


@@ -67,49 +70,50 @@

-## 🍬 Features +## 🍬 特色 -- Prompt character turns red if the last command exits with non-zero code -- Current username if not the same as the logged-in user -- Current Java version(`☕`) -- Current Node.js version(`⬢`) -- Current Rust version (`🦀`) -- Current Ruby version (`💎`) -- Current Python version (`🐍`) -- Current Go version (`🐹`) -- Nix-shell environment detection -- Print an environment variable -- Current version of package in current directory (`📦`) +- 如果最近一個指令結束時回傳非零的代碼,提示字元將轉成紅色 +- 會在使用者與登入的使用者不同時顯示使用者名稱 +- 現在的 Java 版本 (`☕`) +- 現在的 Node.js 版本 (`⬢`) +- 現在的 Rust 版本 (`🦀`) +- 現在的 Ruby 版本 (`💎`) +- 現在的 Python 版本 (`🐍`) +- 現在的 Go 版本 (`🐹`) +- 偵測 Nix-shell 的環境 +- 印出環境變數 +- 現在資料夾中的組件 (package) 版本 (`📦`) - npm (Node.js) - cargo (Rust) - poetry (Python) -- Current battery level and status -- Current Git branch and rich repo status: - - `=` — conflicting changes - - `⇡` — ahead of remote branch - - `⇣` — behind of remote branch - - `⇕` — diverged changes - - `?` — untracked changes - - `$` — stashed changes - - `!` — modified files - - `+` — added files - - `»` — renamed files - - `✘` — deleted files -- Execution time of the last command if it exceeds the set threshold -- Indicator for jobs in the background (`✦`) -- Current Kubernetes Cluster and Namespace (`☸`) +- 現在的電池電量與狀態 +- 現在的 Git branch 與豐富的程式庫 (repository) 狀態: + - `=` — 修改衝突 + - `⇡` — 超前遠端 (remote) branch + - `⇣` — 落後遠端 (remote) branch + - `⇕` — 修改發散 (diverge) + - `?` — 修改未追蹤 + - `$` — 隱藏的 (stashed) 修改 + - `!` — 修改過的檔案 + - `+` — 新增的檔案 + - `»` — 重新命名的檔案 + - `✘` — 刪除的檔案 +- 最近的指令花費的時間 (如果超過某個預先設定的門檻) +- 標註背景執行的工作 (`✦`) +- 現在的 Kubernetes 叢集以及名稱空間 (Namespace) (`☸`) +- 目前的 AWS 配置 (`☁️`) -## 🚀 Installation +## 🚀 安裝 -### Prerequisites +### 先決要求 -- A [Powerline font](https://github.com/powerline/fonts) installed and enabled in your terminal (for example, try [Fira Code](https://github.com/tonsky/FiraCode)). +- 一個已經安裝並在你的終端機內啟動的 [Powerline 字型](https://github.com/powerline/fonts) (例如,試試看 [Fira Code](https://github.com/tonsky/FiraCode))。 -### Getting Started +### 入門 -1. Install the **starship** binary: +1. 安裝 **starship** 執行檔: - **[Download archives of precompiled binaries](https://github.com/starship/starship/releases)** if you don't use the platforms below. + 如果你並非使用以下平台,請直接**[下載編譯好的執行檔的壓縮檔](https://github.com/starship/starship/releases)**。 #### Homebrew @@ -119,7 +123,7 @@ ``` - #### Rust (v1.33 or higher) + #### Rust (v1.33 或更高版本) ```sh $ cargo install starship @@ -128,14 +132,14 @@ #### Arch Linux (AUR) - Starship is available on the AUR under the name `starship`. Install it with `yay` or your favorite AUR helper. + Starship 在 AUR 中已經以 `starship` 這個名字存在。 請使用 `yay` 或你喜歡的 AUR 幫手安裝。 ```sh $ yay -S starship ``` - #### Nix (unstable) + #### Nix (不穩定) ```sh $ nix-env --install starship @@ -148,12 +152,23 @@ $ pkg install starship ``` -1. Add the init script to your shell's config file: + + #### 其他 x86-64 Linux 平台 + + 下載一個預先建立好的執行檔,並放在 /usr/local/bin/ 下: + + ```sh + $ wget -q --show-progress https://github.com/starship/starship/releases/latest/download/starship-x86_64-unknown-linux-gnu.tar.gz + $ tar xvf starship-x86_64-unknown-linux-gnu.tar.gz + $ sudo mv starship /usr/local/bin/ + ``` + +1. 將初始化腳本 (script) 加入你的 shell 的設定檔: #### Bash - Add the following to the end of `~/.bashrc`: + 將以下內容放到 `~/.bashrc` 的結尾: ```sh # ~/.bashrc @@ -164,7 +179,7 @@ #### Fish - Add the following to the end of `~/.config/fish/config.fish`: + 將以下內容放到 `~/.config/fish/config.fish` 的結尾: ```sh # ~/.config/fish/config.fish @@ -175,7 +190,7 @@ #### Zsh - Add the following to the end of `~/.zshrc`: + 將以下內容放到 `~/.zshrc` 的結尾: ```sh # ~/.zshrc @@ -183,28 +198,38 @@ eval "$(starship init zsh)" ``` -## 🔧 Configuration -For details on how to configure Starship, check out our [documentation](https://starship.rs/config/). + #### Powershell -## 🤝 Contributing + 將以下內容放到 `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` 的結尾 (或是在 -Nix 上的 `~/.config/powershell/Microsoft.PowerShell_profile.ps1`): -We are always looking for contributors of **all skill levels**! If you're looking to ease your way into the project, try out a [good first issue](https://github.com/starship/starship/labels/🌱%20good%20first%20issue). + ```sh + # ~\Documents\PowerShell\Profile.ps1 + Invoke-Expression (&starship init powershell) + ``` -### High Priority Needs +## 🔧 設定 -- 👩‍💼 **Product Manager** - - We have a GitHub Project and many unorganized/unprioritized features, as well as ideas that haven't yet been made into issues. Starship needs someone to own the product direction! -- 👩‍🎨 **Designer** - - Like making eye-catching websites? Excellent! We are looking to create a beautiful landing page showing off Starship in all its glory. Helping design for Starship's brand is a great opportunity to try out new ideas! -- 👩‍💻 **Rust Developer** - - There is _a lot_ of low-hanging fruit when it comes to writing idiomatic Rust, designing effective Rust architecture, performance optimizations, cross-platform build optimizations, and more! I ([@matchai](https://github.com/matchai)) am a beginner to Rust. Come point us in the right direction! +關於如何設定 Starship,請看 [文件](https://starship.rs/zh-TW/config/) 。 -If you are interested in helping contribute to starship, please take a look at our [Contributing Guide](https://github.com/starship/starship/blob/master/CONTRIBUTING.md). Also, feel free to drop into our [Discord server](https://discord.gg/8Jzqu3T) and say hi. 👋 +## 🤝 貢獻 -### Contributors +我們歡迎具有**各式各樣能力**的貢獻者! 如果你正在尋找容易加入的方法,試試看標註為「[good first issue](https://github.com/starship/starship/labels/🌱%20good%20first%20issue)」的 issue。 -Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): +### 高優先需求 + +- 👩‍💼 **專案管理員** + - 我們有一個 GitHub 專案以及許多尚未整理/排序的功能,甚至還有點子尚未被製作成 issue。 Starship 需要有人掌管產品的方向! +- 👩‍🎨 **設計師** + - 喜歡製作吸睛的網站? 超讚! 我們正在想辦法建立一個漂亮的 landing page 來展示 Starship 的美妙。 幫助設計 Starship 的商標正好是一個試驗新點子的機會! +- 👩‍💻 **Rust 開發者** + - 當正在寫慣用的 Rust 程式碼、設計高效的 Rust 程式架構、效能優化、跨平台建置優化、以及其他很多東西時,可以在這裡看到_許多_唾手可得的東西! 我 ([@matchai](https://github.com/matchai)) 是一個 Rust 新手。 來為我們指出正確的方向吧! + +如果你對貢獻 Starship 有興趣,請看我們的 [貢獻指南](https://github.com/starship/starship/blob/master/CONTRIBUTING.md) 。 另外,請不用客氣加入我們的 [Discord 伺服器](https://discord.gg/8Jzqu3T) 並來問候一下。 👋 + +### 貢獻者們 + +感謝這些優秀的人們 ([表情符號索引](https://allcontributors.org/docs/en/emoji-key)): @@ -259,28 +284,34 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d (´⌣`ʃƪ)
(´⌣`ʃƪ)

💻 Barnaby Keene
Barnaby Keene

💻 Keith Wade
Keith Wade

💻 ⚠️ + LukeAI
LukeAI

📖 + Zach Mertes
Zach Mertes

💻 📖 ⚠️ + David Knaack
David Knaack

💻 📖 ⚠️ + + + Carl Summers
Carl Summers

📖 -This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! +這個專案遵守 [all-contributors](https://github.com/all-contributors/all-contributors) 規範。 歡迎任何種類的貢獻者! -## 💭 Inspired By +## 💭 發想來自 -Please check out these previous works that helped inspire the creation of starship. 🙏 +請看之前這些幫助我們創造 Starship 的前任作品。 🙏 -- **[denysdovhan/spaceship-prompt](https://github.com/denysdovhan/spaceship-prompt)** - A ZSH prompt for astronauts. +- **[denysdovhan/spaceship-prompt](https://github.com/denysdovhan/spaceship-prompt)** - 給太空人的 ZSH 提示。 -- **[denysdovhan/robbyrussell-node](https://github.com/denysdovhan/robbyrussell-node)** - Cross-shell robbyrussell theme written in JavaScript. +- **[denysdovhan/robbyrussell-node](https://github.com/denysdovhan/robbyrussell-node)** - 使用 Javascript 撰寫的跨 shell robbyrussell 主題。 -- **[reujab/silver](https://github.com/reujab/silver)** - A cross-shell customizable powerline-like prompt with icons. +- **[reujab/silver](https://github.com/reujab/silver)** - 一個跨 shell、可客製化、像 powerline 的圖案提示字元。


Starship rocket icon

-## 📝 License +## 📝 許可 -Copyright © 2019-present, [Starship Contributors](https://github.com/starship/starship/graphs/contributors).
This project is [ISC](https://github.com/starship/starship/blob/master/LICENSE) licensed. +Copyright © 2019-present, [Starship Contributors](https://github.com/starship/starship/graphs/contributors).
這個專案使用 [ISC](https://github.com/starship/starship/blob/master/LICENSE) 許可。 diff --git a/media/flag-cn.png b/media/flag-cn.png index 46df8485..55d54daa 100755 Binary files a/media/flag-cn.png and b/media/flag-cn.png differ diff --git a/media/flag-de.png b/media/flag-de.png index 075a66af..d72c98f2 100755 Binary files a/media/flag-de.png and b/media/flag-de.png differ diff --git a/media/flag-fr.png b/media/flag-fr.png index e5243215..7d7e7b3e 100755 Binary files a/media/flag-fr.png and b/media/flag-fr.png differ diff --git a/media/flag-ru.png b/media/flag-ru.png index 62d5b488..f09b4c0a 100755 Binary files a/media/flag-ru.png and b/media/flag-ru.png differ diff --git a/media/flag-tw.png b/media/flag-tw.png old mode 100644 new mode 100755 index 1c65b9f6..60ce0c1c Binary files a/media/flag-tw.png and b/media/flag-tw.png differ