Todos los días lanzo un montón de urxvtc -e tmux
.
Estoy tratando de encontrar una manera de anular el título de la ventana urxvt X ("tmux") con el nombre de la sesión tmux actual configurado a través de :rename-session session_name
.
¿Alguno de ustedes logró eso?
Gracias !
Respuesta1
Intente agregar lo siguiente a su archivo ~/.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