Edite seu arquivo .bashrc
( gedit ~/.bashrc
) e altere seu PS1 para gostar como abaixo ou adicione-o no final do arquivo:
PS1='\u@\h:~\$ '
Salve o arquivo, feche e reabra o Terminal ou faça uma nova fonte ( . ~/.bashrc
ou source ~/.bashrc
) e veja as alterações.
\u - username of the current user (= $LOGNAME),
\h - the name of the computer running the shell (hostname),
\$ - display "$" for normal users and "#" for the root,
@ - display "@"
~ - display "~"