03.在linux终端中修改窗体标题

2019-03-01  本文已影响23人  杨强AT南京

一、命令行方式:

echo -e "\033]0;我的虚拟终端窗体标题3\007"
终端标题被改变
echo -n $'\e'"]0;我的虚拟终端窗体标题"$'\a'
另一种方式的标题改变,都是bash脚本

二、提示符方式:

export PS1="\[\033]0;标题\007\]"
使用提示符环境变量修改

附录

# Set terminal title
# @param string $1  Tab/window title
# @param string $2  (optional) Separate window title
# The latest version of this software can be obtained here:
# http://fvue.nl/wiki/NameTerminal
function nameTerminal() {
    [ "${TERM:0:5}" = "xterm" ]   && local ansiNrTab=0
    [ "$TERM"       = "rxvt" ]    && local ansiNrTab=61
    [ "$TERM"       = "konsole" ] && local ansiNrTab=30 ansiNrWindow=0
        # Change tab title
    [ $ansiNrTab ] && echo -n $'\e'"]$ansiNrTab;$1"$'\a'
        # If terminal support separate window title, change window title as well
    [ $ansiNrWindow -a "$2" ] && echo -n $'\e'"]$ansiNrWindow;$2"$'\a'
} # nameTerminal()
上一篇下一篇

猜你喜欢

热点阅读