feat(toolbox): alias for `toolbox enter`

master
Ilya Maximov 4 years ago committed by Marc Cornellà
parent 0866f4daf4
commit ed03e7127f
  1. 6
      plugins/toolbox/README.md
  2. 2
      plugins/toolbox/toolbox.plugin.zsh

@ -17,3 +17,9 @@ You can use it by adding `$(toolbox_prompt_info)` to your `PROMPT` or `RPROMPT`
```zsh
RPROMPT='$(toolbox_prompt_info)'
```
## Aliases
| Alias | Command | Description |
|-------|----------------------|----------------------------------------|
| tb | `toolbox enter` | Enters the toolbox environment |

@ -1,3 +1,5 @@
function toolbox_prompt_info() {
[[ -f /run/.toolboxenv ]] && echo "⬢"
}
alias tb="toolbox enter"

Loading…
Cancel
Save