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
|
||||
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue