web-dev-qa-db-ja.com

tmuxにセッション名に従ってurxvtウィンドウのタイトルを設定させます

毎日たくさんのurxvtc -e tmuxを起動します。

Urxvt Xウィンドウタイトル( "tmux")を:rename-session session_nameで設定された現在のtmuxセッション名で上書きする方法を見つけようとしています。

誰かがそれを達成しましたか?

ありがとう!

9
Bathz

〜/ .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
12
Jeremy W