[FIX] Only source terminal prompt file if there
I don't want to see an error message when ssh-ing to a computer which doesn't have this file because `termite` isn't installed.
This commit is contained in:
parent
d79a86e8bd
commit
cbcddccb50
|
@ -6,7 +6,8 @@
|
|||
[[ $- != *i* ]] && return
|
||||
|
||||
# Export our directory to Termite for opening new terminals
|
||||
if [[ "$TERM" == xterm-termite ]] || [[ "$TERM" == xterm ]]; then
|
||||
if { [[ "$TERM" == xterm-termite ]] || [[ "$TERM" == xterm ]]; } &&
|
||||
[ -r /etc/profile.d/vte.sh ]; then
|
||||
. /etc/profile.d/vte.sh
|
||||
__vte_prompt_command
|
||||
fi
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Export our directory to Termite for opening new terminals
|
||||
if [[ "$TERM" == xterm-termite ]] || [[ "$TERM" == xterm ]]; then
|
||||
if { [[ "$TERM" == xterm-termite ]] || [[ "$TERM" == xterm ]]; } &&
|
||||
[ -r /etc/profile.d/vte.sh ]; then
|
||||
. /etc/profile.d/vte.sh
|
||||
__vte_osc7
|
||||
precmd_functions+=(__vte_prompt_command) # FIXME: why isn't it set above ?
|
||||
|
|
Loading…
Reference in a new issue