2022-03-22 14:39:37 -07:00
|
|
|
# toolbox plugin
|
|
|
|
|
|
|
|
Plugin for [toolbox](https://containertoolbx.org), a tool to use containerized CLI environments.
|
|
|
|
|
|
|
|
To use it, add `toolbox` to your plugins array in your `.zshrc` file:
|
|
|
|
|
|
|
|
```zsh
|
|
|
|
plugins=(... toolbox)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Prompt function
|
|
|
|
|
2024-08-02 07:37:00 -07:00
|
|
|
This plugins adds `toolbox_prompt_info()` function. Using it in your prompt, it will show the toolbox
|
|
|
|
indicator ⬢ (if you are running in a toolbox container), and nothing if not.
|
2022-03-22 14:39:37 -07:00
|
|
|
|
|
|
|
You can use it by adding `$(toolbox_prompt_info)` to your `PROMPT` or `RPROMPT` variable:
|
|
|
|
|
|
|
|
```zsh
|
|
|
|
RPROMPT='$(toolbox_prompt_info)'
|
|
|
|
```
|
2022-05-08 08:29:02 -07:00
|
|
|
|
2024-08-02 07:37:00 -07:00
|
|
|
In the same way, it adds `toolbox_prompt_name()`, showing the name of the containerized environment.
|
|
|
|
|
2022-05-08 08:29:02 -07:00
|
|
|
## Aliases
|
|
|
|
|
2024-08-02 07:37:00 -07:00
|
|
|
| Alias | Command | Description |
|
|
|
|
| ----- | --------------- | ------------------------------------ |
|
|
|
|
| tbe | `toolbox enter` | Enters the toolbox environment |
|
|
|
|
| tbr | `toolbox run` | Run a command in an existing toolbox |
|