매일 나는 많은 urxvtc -e tmux
.
를 통해 설정된 현재 tmux 세션 이름으로 urxvt X 창 제목("tmux")을 재정의하는 방법을 찾으려고 합니다 :rename-session session_name
.
여러분 중에 그걸 달성한 사람이 있나요 ??
감사해요 !
답변1
~/.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