1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-07 16:00:41 +01:00
Files
oh-my-zsh/plugins/toolbox/toolbox.plugin.zsh
2024-08-02 16:37:00 +02:00

11 lines
252 B
Bash

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"