2019-12-06 22:07:57 +00:00
# FAQ
2019-12-14 23:46:45 +00:00
## デモGIFで使用される構成は何ですか?
2019-12-06 22:07:57 +00:00
2019-12-14 23:46:45 +00:00
- **ターミナルエミュレータ**:[ iTerm2 ](https://iterm2.com/)
- **テーマ**: Minimal
- **カラースキーム**: [Snazzy ](https://github.com/sindresorhus/iterm2-snazzy )
- **フォント**: [Fira Code ](https://github.com/tonsky/FiraCode )
- **シェル**: [Fish Shell ](https://fishshell.com/ )
- **設定**: [matchaiのDotfiles ](https://github.com/matchai/dotfiles/blob/master/.config/fish/config.fish )
- **プロンプト**: [Starship ](https://starship.rs/ )
2019-12-06 22:07:57 +00:00
2019-12-14 23:46:45 +00:00
## `prompt_order` と `<module>.disabled` は同じことをしますか?
2019-12-06 22:07:57 +00:00
2019-12-14 23:46:45 +00:00
はい、両方ともプロンプトでモジュールを無効にするために使用できます。 モジュールを無効にするだけの場合は、これらの理由から` < module > .disabled `を無効にする方法をお勧めします。
2019-12-06 22:07:57 +00:00
2019-12-14 23:46:45 +00:00
- モジュールを無効にすると、prompt_orderからモジュールを省略するよりも明確になります。
- Starshipが更新されると、新しく作成されたモジュールがプロンプトに追加されます
2019-12-06 22:07:57 +00:00
2019-12-14 23:46:45 +00:00
## ドキュメントによると、Starshipはクロスシェル対応をしているようですが、Xシェルはサポートしていません。 なぜですか?
2019-12-06 22:07:57 +00:00
2019-12-14 23:46:45 +00:00
Starshipの構築方法は、事実上すべてのシェルのサポートを追加できるはずです。 Starshipのバイナリはステートレスであり、シェルに依存しないため、シェルがプロンプトのカスタマイズとシェルの拡張をサポートしている限り、Starshipを使用できます。
2019-12-06 22:07:57 +00:00
2019-12-14 23:46:45 +00:00
Starshipをbashで動作させる小さな例を次に示します。
2019-12-06 22:07:57 +00:00
```sh
# Get the status code from the last command executed
STATUS=$?
# Get the number of jobs running.
NUM_JOBS=$(jobs -p | wc -l)
# Set the prompt to the output of `starship prompt`
2020-05-23 23:10:58 +00:00
PS1="$(starship prompt --status=$STATUS --jobs=$NUM_JOBS)"
2019-12-06 22:07:57 +00:00
```
2019-12-14 23:46:45 +00:00
Starshipに組み込まれた[Bashの実装](https://github.com/starship/starship/blob/master/src/init/starship.bash)は、[ Command Durationモジュール](https://starship.rs/config/#Command-Duration)などの高度な機能を可能にし、Starshipが事前にインストールされたBash構成と互換性があるようにするため、少し複雑です。
2019-12-06 22:07:57 +00:00
2019-12-14 23:46:45 +00:00
`Starshipのプロンプト` で受け入れられるすべてのフラグのリストは、次のコマンドを取得できます。
2019-12-06 22:07:57 +00:00
```sh
2019-12-13 20:26:23 +00:00
starship prompt --help
2019-12-06 22:07:57 +00:00
```
2019-12-14 23:46:45 +00:00
プロンプトは提供されているコンテキストを使用しますが、フラグは「必須」ではありません。
2020-05-05 17:07:34 +00:00
## How do I run Starship on Linux distributions with older versions of glibc?
If you get an error like "*version 'GLIBC_2.18' not found (required by starship)*" when using the prebuilt binary (for example, on CentOS 6 or 7), you can use a binary compiled with `musl` instead of `glibc` :
```sh
curl -fsSL https://starship.rs/install.sh | bash -s -- --platform unknown-linux-musl
```