Disabled VTE plugin in Bash's Prompt Command

This commit is contained in:
Eric Teunis de Boone 2018-03-12 08:06:07 +01:00
parent edc5beb679
commit de12dbc25a
1 changed files with 7 additions and 7 deletions

View File

@ -19,10 +19,9 @@ fi
# Make sure we have the VTE thing when we define our prompt command
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
source /etc/profile.d/vte.sh
fi
#if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
#source /etc/profile.d/vte.sh
#fi
# Old PS1
#if [ "$color_prompt" = yes ]; then
@ -45,9 +44,10 @@ function color() {
}
function vte_thing() {
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
__vte_osc7
fi
# if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
# __vte_osc7
# fi
true
}
export PROMPT_COMMAND=__prompt_command