突然,我的 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 文件的片段:
# Start tmux at login
# If not running interactively, do not do anything
[[ $- != *i* ]] && return
[[ -z "$TMUX" ]] && exec tmux
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
# 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
我怎样才能让它再次工作?我是不是忘记了什么?