浏览代码

shrc: Fix how the terminal title is set

On some systems terminal title is set by default by PROMPT_COMMAND,
so add my setting at the last of it.
pull/15/head
10sr 9 年前
父节点
当前提交
6f43f8f757
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. +6
    -1
      shrc

+ 6
- 1
shrc 查看文件

@@ -1269,6 +1269,11 @@ then
eval __my_set_title ${__terminal_title}
}
else
PROMPT_COMMAND="laststatus=\$?;__my_set_title \"${__terminal_title}\";$PROMPT_COMMAND"
if test -n "$PROMPT_COMMAND"
then
PROMPT_COMMAND="laststatus=\$?;$PROMPT_COMMAND;__my_set_title \"${__terminal_title}\""
else
PROMPT_COMMAND="laststatus=\$?;__my_set_title \"${__terminal_title}\""
fi
fi
laststatus=0

正在加载...
取消
保存