Does anyone know if it's possible to remove user and hostname from Gnome Terminal?
I wish to only see the running command there.
Does anyone know if it's possible to remove user and hostname from Gnome Terminal?
I wish to only see the running command there.
This is pretty easy to do:
Open your Terminal (if it's not already open)
Open your .bashrc
file
Find this section:
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
Remove \u@\h:
Save the file, and restart Terminal.