2022-03-22 14:39:37 -07:00
|
|
|
function toolbox_prompt_info() {
|
|
|
|
[[ -f /run/.toolboxenv ]] && echo "⬢"
|
|
|
|
}
|
2022-05-08 08:29:02 -07:00
|
|
|
|
2024-08-02 07:37:00 -07:00
|
|
|
function toolbox_prompt_name() {
|
2024-08-02 08:00:55 -07:00
|
|
|
[[ -f /run/.containerenv ]] || return
|
2024-08-04 09:59:42 -07:00
|
|
|
|
|
|
|
# This command reads the /run/.containerenv file line by line and extracts the
|
|
|
|
# container name from it by looking for the `name="..."` line, and uses -F\" to
|
|
|
|
# split the line by double quotes. Then all % characters are replaced with %%
|
|
|
|
# to escape them for the prompt.
|
|
|
|
awk -F\" '/name/ { gsub(/%/, "%%", $2); print $2 }' /run/.containerenv
|
2024-08-02 07:37:00 -07:00
|
|
|
}
|
|
|
|
|
2023-04-06 06:11:52 -07:00
|
|
|
alias tbe="toolbox enter"
|
|
|
|
alias tbr="toolbox run"
|