2022-03-22 21:39:37 +00:00
|
|
|
function toolbox_prompt_info() {
|
|
|
|
[[ -f /run/.toolboxenv ]] && echo "⬢"
|
|
|
|
}
|
2022-05-08 15:29:02 +00:00
|
|
|
|
2024-08-02 14:37:00 +00:00
|
|
|
function toolbox_prompt_name() {
|
2024-08-02 15:00:55 +00:00
|
|
|
[[ -f /run/.containerenv ]] || return
|
2024-08-04 16:59:42 +00: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 14:37:00 +00:00
|
|
|
}
|
|
|
|
|
2023-04-06 13:11:52 +00:00
|
|
|
alias tbe="toolbox enter"
|
|
|
|
alias tbr="toolbox run"
|