mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
12 lines
310 B
Bash
12 lines
310 B
Bash
function toolbox_prompt_info() {
|
|
[[ -f /run/.toolboxenv ]] && echo "⬢"
|
|
}
|
|
|
|
function toolbox_prompt_name() {
|
|
[[ -f /run/.containerenv ]] || return
|
|
local _to_print="$(cat /run/.containerenv | awk -F\" '/name/ { print$2 }')"
|
|
echo ${_to_print:gs/%/%%}
|
|
}
|
|
|
|
alias tbe="toolbox enter"
|
|
alias tbr="toolbox run"
|