Watch
1
0
Fork
You've already forked oh-my-zsh
0
oh-my-zsh/plugins/toolbox/toolbox.plugin.zsh

10 lines
252 B
Shell
Raw Normal View History

function toolbox_prompt_info() {
[[ -f /run/.toolboxenv ]] && echo "⬢"
}
function toolbox_prompt_name() {
[[ -f /run/.containerenv ]] && cat /run/.containerenv | awk -F\" '/name/ { print$2 }'
}
alias tbe="toolbox enter"
alias tbr="toolbox run"