rename tmux window name to prompt_command, ps1 or remote ssh hostname?

26

12

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.

user68782

Posted 2011-02-23T08:53:08.590

Reputation: 263

Answers

16

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

Posted 2011-02-23T08:53:08.590

Reputation: 7 890

Thanks! I used PROMPT_COMMAND='settitle $HOSTNAME:$PWD' - since with @Mikel's code I got no hostname and a -bash: : No such file or directory error before each command prompt. It seems to me that the $() would make bash try to execute whatever settitle returns. (I'm running bash on linux.) – tuomassalo – 2018-02-09T13:34:13.820

This really dont name the window title to the hostname of remote box with out having the .bashrc setup on the remote box. Thank you though I did learn some slick. – user68782 – 2011-03-04T03:31:26.943

If all you want is the hostname on your local side, that's much easier. Hang on a sec... – Mikel – 2011-03-04T03:50:25.367

brilliant! thank you. Sorry my inability to explain my request resulted in two questions. again, Thanks! – user68782 – 2011-03-04T05:12:31.240

As tmux changes its window title on a whim, this can very quickly be overwritten by normal changes to the window title by tmux. – UtahJarhead – 2012-10-08T18:43:26.853

36

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

Posted 2011-02-23T08:53:08.590

Reputation: 1 755

2As it's the active window, I don't think the -t${TMUX_PANE} is necessary (at least it wasn't for me). – Christopher – 2012-12-05T17:03:07.353

9@Christopher If you're running, say, sleep 3 and switch windows, the prompt would otherwise issue the command to the wrong window when sleep completes. (This is the reason I came here, +1). – quornian – 2013-04-02T02:04:03.307

16

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

Posted 2011-02-23T08:53:08.590

Reputation: 2 822

8

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".

Christopher

Posted 2011-02-23T08:53:08.590

Reputation: 676

1I am using tmux rename-window hostname -s after the command ssh "@$", it basically "resets" the title to my "gateway" machine. – andrei – 2013-05-16T06:31:37.653

7

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).

tarczewski

Posted 2011-02-23T08:53:08.590

Reputation: 71

1I've gone for a if env | grep -q "TMUX_PANE"; then instead of the ps -p... stuff, but same principle. – atomicules – 2018-04-18T07:52:57.413

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

Posted 2011-02-23T08:53:08.590

Reputation: 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

Posted 2011-02-23T08:53:08.590

Reputation: 2 934

we use internal dns, so hostname -s removes the extra domain stuff, so that server1.internal.local shows up as just server1 – Brian – 2013-02-26T16:11:15.410

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

Posted 2011-02-23T08:53:08.590

Reputation: 321

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
}

user536642

Posted 2011-02-23T08:53:08.590

Reputation: 1

0

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.

josefwells

Posted 2011-02-23T08:53:08.590

Reputation: 31