tmux集合标题停止了对rxvt unicode的追求



突然,我的tmux停止更改rxvt-unicode的终端窗口标题。我记得上周做的唯一重大更改是更新了bash

它仍然与xterm一起工作,所以它可能是严格与rxvt一起工作的东西。

以下是我当前的版本:

Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name               Version        Architecture   Description
+++-==================-==============-==============-==========================================
ii  bash               4.3-7ubuntu1.1 amd64          GNU Bourne Again SHell
ii  rxvt-unicode       9.19-1         amd64          RXVT-like terminal emulator with Unicode s
ii  tmux               1.8-5          amd64          terminal multiplexer

在这里,我的conf文件的片段:

.bashrc

# Start tmux at login
# If not running interactively, do not do anything
[[ $- != *i* ]] && return
[[ -z "$TMUX" ]] && exec tmux

.X默认

URxvt.background:       #1E2B20
URxvt.foreground:       wheat
URxvt.fading:           25
URxvt.scrollBar:        0
!URxvt.font:             -*-fixed-medium-r-semicondensed-*-13-*-*-*-*-*-*-*
!URxvt.font:             xft:Inconsolata:pixelsize=15
URxvt.font:             xft:Ubuntu Mono:pixelsize=15
URxvt.color10:          #66ff66
URxvt.color12:          #6666ff
URxvt.borderLess:       0
URxvt.termName:         rxvt
URxvt.urlLauncher:      google-chrome
URxvt.loginShell:       1
! Font resize extension
URxvt.perl-ext-common: ...,font-size
URxvt.keysym.C-S-Up:   perl:font-size:increase
URxvt.keysym.C-S-Down: perl:font-size:decrease

.tmux.conf

# turn on window titles
set -g set-titles on
# set wm window title string
set -g set-titles-string '#W'
# automatically set window title
setw -g automatic-rename on

我怎样才能让它再次工作?我忘了什么吗?

$TERM.Xdefaults中设置为rxvt。将其设置为rxvt-unicode解决了问题。

.Xdefaults:中

URxvt.termName:         rxvt-unicode

相关内容

  • 没有找到相关文章

最新更新