How can I put the current running process name into a GNOME Terminal tab title (or title bar when there's only one tab)?
Although https://superuser.com/questions/42362/gnome-terminal-process-name-in-tab-title provides a solution (below), it completely clutters each tab with garbage when it starts so as to appear broken. Is there a better way?
case "$TERM" in
xterm*|rxvt*)
set -o functrace
trap 'echo -ne "\e]0;$BASH_COMMAND\007"' DEBUG
PS1="\e]0;\s\007$PS1"
;;
*)
;;
esac
Well, since everyone already seems to know David Pashley's solution I'm kind of surprised it took me so long to find this one. It actually takes care of the bash-completion problem.
To be clear: I did nothing on my own here but research. All credit goes to Marius Gedminas (http://mg.pov.lt/blog/bash-prompt.html).
This works perfectly for me with Gnome-Terminal/Terminator