27

I would love to be able to have my tmux window title automatically renamed to prompt_command, ps1 or just the hostname of a machine I ssh to. having 9 windows opened labeled "ssh" is really useless. Doing sysadmin work I open new screens and ssh around to much to manually rename them.

One thing I noticed is tmux updates the xterm window title so I feel like it has to know.

Any help? I would even be willing to go back to screen if I could get this feature.

fiatjaf
  • 45
user68782
  • 273
  • 1
  • 3
  • 4

11 Answers11

43

tmux rename-window -t${TMUX_PANE} "Title Text"

This is the proper way to set tmux titles in a window. The $TMUX_PANE variable is set by tmux and is used to differentiate between different panes.

UtahJarhead
  • 2,077
20

Just for people who came here by searching how to change the title of a tmux session:

Ctrl + B, $

This will give you a prompt, where you can rename the active session.

To change the active window use komma instead:

Ctrl + B, ,

see: How do I rename a session in tmux?

rubo77
  • 5,218
15

I'm not aware of any way to make it look at your PS1 directly.

However, tmux understands the same commands to set the window name as screen does.

So you can define a function like this in your ~/.bashrc or ~/.zshrc:

settitle() {
    printf "\033k$1\033\\"
}

and then call settitle from anywhere.

For example, you could include it in your PS1 variable, e.g.

PS1='$HOST:$PWD$(settitle $HOST:$PWD)$ '

or via PROMPT_COMMAND:

PROMPT_COMMAND='$(settitle $HOST:$PWD)'
# and don't change PS1

Now I understand you have tmux running on your desktop, and you want ssh commands to have the hostname rather than ssh, that's much easier.

Given you've added settitle to your local ~/.bashrc, all you want to do is add this too:

ssh() {
    settitle "$*"
    command ssh "$@"
    settitle "bash"
}

Replace bash with zsh, or something else more appropriate if necessary.

Mikel
  • 9,184
9

Combining both Mikel's and UtahJarhead's answers, I used the following in .zshrc to solve this problem:

ssh() {
    tmux rename-window "$*"
    command ssh "$@"
    exit
}

I have automatic window renaming enabled by default, and I can't find a way to reenable it after exiting the remote host. Thus, I just exit the window entirely -- not an issue for my workflow. If you'd prefer to rename it to, say, 'bash', you could replace the exit line with tmux rename-window "bash".

8

Instead of exit or tmux rename-window "bash" you can use

ssh() {
    if [ "$(ps -p $(ps -p $$ -o ppid=) -o comm=)" = "tmux" ]; then
            tmux rename-window "$*"
            command ssh "$@"
            tmux set-window-option automatic-rename "on" 1>/dev/null
    else
            command ssh "$@"
    fi
}

This re-activates the normal function that renames automatically window for next commands.

The if block prevents from (without it) renaming tmux current window from ssh commands used on other shells (out of tmux).

Jawa
  • 3,679
1

I would note in all of these examples with:

command ssh "$@"

You might want to grab the exitcode, and exit the function with it, otherwise things like:

ssh server false

Will return 0.

command ssh"$@"
_exitcode=$?
#other code
exit $_exitcode

Will exit ssh with the return code of the ssh.

1

Another solution would be to rename the active window to its previous name, after the ssh session :

ssh() {

local code=0
local ancien

ancien=$(tmux display-message -p '#W')

if [ $TERM = tmux -o $TERM = tmux-256color ]; then

    tmux rename-window "$*"

    command ssh "$@"

    code=$?
else
    command ssh "$@"

    code=$?
fi

tmux rename-window $ancien

return $code
}
chimay
  • 11
1

I know this has been answered a long time ago, but I thought I would add what I have fiddled with and found (based on the accepted answer).. I have added this to the /etc/bashrc of all my servers (easy to do with fabric, puppet, etc)

settitle() {
    printf "\033k$1\033\\"
}
bash_prompt_command() {
    settitle "`hostname -s`:$PWD"
}
PROMPT_COMMAND=bash_prompt_command

And it sets the window name automatically in screen or tmux.

Brian
  • 2,982
0

This works for in tmux 2.1 and with zsh locally and on servers:

ssh() {
    tmux set-option allow-rename off 1>/dev/null
    tmux rename-window "ssh/$*"
    command ssh "$@"
    tmux set-option allow-rename on 1>/dev/null
}

I had to disable the allow-rename option manually before changing the windows name - otherwise it got changed to the current path on most of my servers (also using zsh there). The good thing is: if you reenable the allow-rename option it works immediately.

FSchndr
  • 671
0

Add this to .profile or .bashrc

# Change window name for `tmux`
ssh() {
    if [ "$(ps -p $(ps -p $$ -o ppid=) -o comm=)" = "tmux" ]; then
        #tmux rename-window "$(echo $* | cut -d . -f 1)"
        tmux rename-window "$(echo $* | cut -d @ -f 2)"
        command ssh "$@"
        tmux set-window-option automatic-rename "on" 1>/dev/null
    else
        command ssh "$@"
    fi
}
DavidPostill
  • 162,382
0

First create a (callback) function to set/restore tmux window name like this, the default name here to restore is bash.

set_tmux_window_name()
{
    [[ -z "$TMUX" ]] && return
    [[ -z "$1" ]] && tmux rename-window "bash" || tmux rename-window $1
}

and then create a ssh wrapper which will restore the tmux window name back to bash as you defined once the ssh wrapper exited due to signals like KILL/TERM/ABORT/..

ssh_wrapper ()
{ 
    trap set_tmux_window_name SIGINT SIGQUIT SIGILL SIGABRT SIGEMT SIGFPE SIGKILL SIGBUS SIGSEGV SIGTERM
ssh_cmd=$@
[[ "$ssh_cmd" = "" ]] && return
eval $ssh_cmd

}

now set the tmux window name before setting up the ssh connection

alias ssh1='set_tmux_window_name "ssh1"; ssh_wrapper username@hostname'
j5shi
  • 141