Sim. Aqui está um exemplo de bash usando o PS1 que deve ser distro-agnóstico:
Especificamente, a sequência de escape \[\e]0; __SOME_STUFF_HERE__ \a\]
é de interesse. Eu editei isso para ser definido em uma variável separada para maior clareza.
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
TITLEBAR='\[\e]0;\u@\h\a\]'
# Same thing.. but with octal ASCII escape chars
#TITLEBAR='\[3]2;\u@\h# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
TITLEBAR='\[\e]0;\u@\h\a\]'
# Same thing.. but with octal ASCII escape chars
#TITLEBAR='\[3]2;\u@\h%pre%7\]'
if [ "$color_prompt" = yes ]; then
PS1="${TITLEBAR}\[3[01;32m\]\u@\h\[3[00m\]:\[3[01;34m\]\W\[3[00m\]\$ "
else
PS1="${TITLEBAR}\u@\h:\W\$ "
fi
unset color_prompt force_color_prompt
7\]'
if [ "$color_prompt" = yes ]; then
PS1="${TITLEBAR}\[3[01;32m\]\u@\h\[3[00m\]:\[3[01;34m\]\W\[3[00m\]\$ "
else
PS1="${TITLEBAR}\u@\h:\W\$ "
fi
unset color_prompt force_color_prompt
Observe também que pode haver muitas maneiras de definir o título de um xterm, dependendo de qual programa de terminal você está usando e de qual shell. Por exemplo, se você estiver usando o Konsole do KDE, poderá substituir a configuração de título acessando Settings
- > Configure Profiles
- > Edit Profile
- > Tabs
e definindo a Tab title format
e Remote tab title format
configurações.
Alémdisso,vocêpodequererconferir:
- este
"Como alterar o título de um xterm" FAQ para outros shells - esta "Prompt Magic" dica para uma boa referência das sequências de escape esse trabalho em bash.
- este Bash Prompt HOWTO para obter uma referência sobre sequências de escape de cores ANSI.