mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 01:48:34 -07:00
feat(toolbox): alias for toolbox enter
This commit is contained in:
parent
0866f4daf4
commit
ed03e7127f
@ -17,3 +17,9 @@ You can use it by adding `$(toolbox_prompt_info)` to your `PROMPT` or `RPROMPT`
|
|||||||
```zsh
|
```zsh
|
||||||
RPROMPT='$(toolbox_prompt_info)'
|
RPROMPT='$(toolbox_prompt_info)'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Aliases
|
||||||
|
|
||||||
|
| Alias | Command | Description |
|
||||||
|
|-------|----------------------|----------------------------------------|
|
||||||
|
| tb | `toolbox enter` | Enters the toolbox environment |
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
function toolbox_prompt_info() {
|
function toolbox_prompt_info() {
|
||||||
[[ -f /run/.toolboxenv ]] && echo "⬢"
|
[[ -f /run/.toolboxenv ]] && echo "⬢"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
alias tb="toolbox enter"
|
||||||
|
Loading…
Reference in New Issue
Block a user