6fa2184da5
Fedora's /etc/bashrc sets the PROMPT_COMMAND environment variable to __vte_prompt_command when running inside a VteTerminal. This becomes a problem if the __vte_prompt_command shell function is missing because /etc/profile.d/vte.sh itself is absent [1], which is the case with the Red Hat Universal Base Image. This tricks the code in /etc/bashrc into not doing that. [1] https://pagure.io/setup/pull-request/23 https://github.com/containers/toolbox/pull/667
86 lines
2.9 KiB
Bash
86 lines
2.9 KiB
Bash
[ "$BASH_VERSION" != "" ] || [ "$ZSH_VERSION" != "" ] || return 0
|
|
[ "$PS1" != "" ] || return 0
|
|
|
|
toolbox_config="$HOME/.config/toolbox"
|
|
host_welcome_stub="$toolbox_config/host-welcome-shown"
|
|
toolbox_welcome_stub="$toolbox_config/toolbox-welcome-shown"
|
|
|
|
# shellcheck disable=2046
|
|
# shellcheck disable=SC1091
|
|
eval $(
|
|
. /usr/lib/os-release
|
|
|
|
echo ID="$ID"
|
|
echo VARIANT_ID="$VARIANT_ID"
|
|
)
|
|
|
|
if [ -f /run/ostree-booted ] \
|
|
&& ! [ -f "$host_welcome_stub" ] \
|
|
&& [ "${ID}" = "fedora" ] \
|
|
&& { [ "${VARIANT_ID}" = "workstation" ] || [ "${VARIANT_ID}" = "silverblue" ]; }; then
|
|
echo ""
|
|
echo "Welcome to Fedora Silverblue. This terminal is running on the"
|
|
echo "host system. You may want to try out the Toolbox for a directly"
|
|
echo "mutable environment that allows package installation with DNF."
|
|
echo ""
|
|
printf "For more information, see the "
|
|
# shellcheck disable=SC1003
|
|
printf '\033]8;;https://docs.fedoraproject.org/en-US/fedora-silverblue/toolbox/\033\\documentation\033]8;;\033\\'
|
|
printf ".\n"
|
|
echo ""
|
|
|
|
mkdir -p "$toolbox_config"
|
|
touch "$host_welcome_stub"
|
|
fi
|
|
|
|
if [ -f /run/.containerenv ] \
|
|
&& [ -f /run/.toolboxenv ]; then
|
|
PS1=$(printf "\[\033[35m\]⬢\[\033[0m\]%s" "[\u@\h \W]\\$ ")
|
|
|
|
if ! [ -f "$toolbox_welcome_stub" ]; then
|
|
echo ""
|
|
echo "Welcome to the Toolbox; a container where you can install and run"
|
|
echo "all your tools."
|
|
echo ""
|
|
echo " - Use DNF in the usual manner to install command line tools."
|
|
echo " - To create a new tools container, run 'toolbox create'."
|
|
echo ""
|
|
printf "For more information, see the "
|
|
# shellcheck disable=SC1003
|
|
printf '\033]8;;https://docs.fedoraproject.org/en-US/fedora-silverblue/toolbox/\033\\documentation\033]8;;\033\\'
|
|
printf ".\n"
|
|
echo ""
|
|
|
|
mkdir -p "$toolbox_config"
|
|
touch "$toolbox_welcome_stub"
|
|
fi
|
|
|
|
if ! [ -f /etc/profile.d/vte.sh ] && [ -z "$PROMPT_COMMAND" ] && [ "${VTE_VERSION:-0}" -ge 3405 ]; then
|
|
case "$TERM" in
|
|
xterm*|vte*)
|
|
[ -n "${BASH_VERSION:-}" ] && PROMPT_COMMAND=" "
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
if [ "$TERM" != "" ]; then
|
|
error_message="Error: terminfo entry not found for $TERM"
|
|
term_without_first_character="${TERM#?}"
|
|
term_just_first_character="${TERM%$term_without_first_character}"
|
|
terminfo_sub_directory="$term_just_first_character/$TERM"
|
|
|
|
if [ "$TERMINFO" = "" ]; then
|
|
! [ -e "/usr/share/terminfo/$terminfo_sub_directory" ] \
|
|
&& ! [ -e "/lib/terminfo/$terminfo_sub_directory" ] \
|
|
&& ! [ -e "$HOME/.terminfo/$terminfo_sub_directory" ] \
|
|
&& echo "$error_message" >&2
|
|
else
|
|
! [ -e "$TERMINFO/$terminfo_sub_directory" ] \
|
|
&& echo "$error_message" >&2
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
unset toolbox_config
|
|
unset host_welcome_stub
|
|
unset toolbox_welcome_stub
|