Deixe o tmux definir o título da janela do urxvt de acordo com o nome da sessão

9

Todo dia eu lanço um monte de urxvtc -e tmux .

Eu estou tentando encontrar uma maneira de substituir o título da janela do urxvt X ("tmux") com o nome da sessão tmux atual definida por :rename-session session_name .

Algum de vocês conseguiu isso?

Obrigado!

    
por Bathz 30.05.2012 / 18:54

1 resposta

12

Tente adicionar o seguinte ao seu arquivo ~ / .tmux.conf.

# Turn on window titles
set -g set-titles on

# Set window title string
#  #H  Hostname of local host
#  #I  Current window index
#  #P  Current pane index
#  #S  Session name
#  #T  Current window title
#  #W  Current window name
#  #   A literal ‘#’
set -g set-titles-string '#S:#I.#P #W'

# Automatically set window title
setw -g automatic-rename
    
por 31.05.2012 / 03:51

Tags