tmux를 처음 열 때 내 창이 강조 표시되는 이유는 무엇입니까?

tmux를 처음 열 때 내 창이 강조 표시되는 이유는 무엇입니까?

때로는 컴퓨터에서 잠시 자리를 비운 후 tmux를 열면 세션의 모든 창에 일종의 배경 강조 표시가 나타납니다.

여기에 이미지 설명을 입력하세요.

순환하면 사라지고 활성 창에만 별표가 표시됩니다.

여기에 이미지 설명을 입력하세요.

왜 이런 일이 발생합니까? 창 레이블이 배경을 강조 표시하지 않도록 수정할 수 있습니까?

답변1

"man tmux"에서:

 STATUS LINE
 [...]
 By default, the window list shows the index, name and (if
 any) flag of the windows present in the current session in ascending
 numerical order.  It may be customised with the window-status-format and
 window-status-current-format options.  The flag is one of the following
 symbols appended to the window name:

       Symbol    Meaning
       *         Denotes the current window.
       -         Marks the last window (previously selected).
       #         Window is monitored and activity has been detected.
       !         A bell has occurred in the window.
       ~         The window has been silent for the monitor-silence
                 interval.
       Z         The window's active pane is zoomed.

 The # symbol relates to the monitor-activity window option.  The window
 name is printed in inverted colours if an alert (bell, activity or
 silence) is present.

하나를 제공하지 않았기 때문에 .tmux.conf무엇이 경고를 발생시켰는지 알기가 어렵습니다. C-b : set-option -g monitor-activity off; set-option -g monitor-silence 0; set-option -g bell-action none문제가 여전히 존재하는지 테스트해 보십시오 . 다음 줄을 다음 줄에 추가할 수도 있습니다 .tmux.conf.

set window-status-activity-style none
set window-status-bell-style none

관련 정보