mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-12-22 09:13:33 +01:00
Disabled VTE plugin in Bash's Prompt Command
This commit is contained in:
parent
edc5beb679
commit
de12dbc25a
1 changed files with 7 additions and 7 deletions
|
@ -19,10 +19,9 @@ fi
|
||||||
|
|
||||||
# Make sure we have the VTE thing when we define our prompt command
|
# Make sure we have the VTE thing when we define our prompt command
|
||||||
|
|
||||||
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
|
#if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
|
||||||
|
#source /etc/profile.d/vte.sh
|
||||||
source /etc/profile.d/vte.sh
|
#fi
|
||||||
fi
|
|
||||||
|
|
||||||
# Old PS1
|
# Old PS1
|
||||||
#if [ "$color_prompt" = yes ]; then
|
#if [ "$color_prompt" = yes ]; then
|
||||||
|
@ -45,9 +44,10 @@ function color() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function vte_thing() {
|
function vte_thing() {
|
||||||
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
|
# if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
|
||||||
__vte_osc7
|
# __vte_osc7
|
||||||
fi
|
# fi
|
||||||
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
export PROMPT_COMMAND=__prompt_command
|
export PROMPT_COMMAND=__prompt_command
|
||||||
|
|
Loading…
Reference in a new issue