나는 정신을 잃고있다. tmux의 "명령 모드"(일반적으로 획득)에 들어갈 때 검정색 배경에 검정색 텍스트가 나타나는 설정은 무엇입니까 Crtl-B-:
? 설정을 사용한 window-status-bell-style
다음 message-command-style
구성 파일을 다시 로드해 보았지만 소용이 없었습니다 mode-style
. Crtl-Q-r
구성 파일을 다시 로드해도 tmux 서버가 다시 시작되거나 새 창을 연 후에만 스타일 변경 사항이 적용됩니까?
unbind C-b
#unbind -n C-b # this will reset C-b to default (back one character)
set -g prefix C-q
# bind-key C-q last-window
bind-key q send-prefix
set -sg escape-time 1
# set -g default-terminal "xterm-256color"
set-option -g default-terminal "screen-256color"
set -g history-limit 10000
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
# start first window at 1 instead of 0
set -g base-index 1
# reload config
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
# auto window rename
set-window-option -g automatic-rename
# modes
setw -g clock-mode-colour colour5
setw -g mode-style 'fg=colour8 bg=colour9 bold'
# panes
set -g pane-border-style 'fg=colour19 bg=colour0'
set -g pane-active-border-style 'bg=colour0 fg=colour9'
# statusbar
set -g status-position bottom
set -g status-justify left
set -g status-style 'bg=colour18 fg=colour137 dim'
set -g status-left ''
set -g status-right '#[fg=colour233,bg=colour19] %d/%m #[fg=colour233,bg=colour8] %H:%M:%S '
set -g status-right-length 50
set -g status-left-length 20
setw -g window-status-current-style 'fg=colour1 bg=colour19 bold'
setw -g window-status-current-format ' #I#[fg=colour249]:#[fg=colour255]#W#[fg=colour249]#F '
setw -g window-status-style 'fg=colour9 bg=colour18'
setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour250]#W#[fg=colour244]#F '
setw -g window-status-bell-style 'fg=colour=19 bg=colour9 bold'
# messages
set -g message-style 'fg=colour232 bg=colour16 bold'
# Activity monitoring
setw -g monitor-activity off
set -g visual-activity off
# Rather than constraining window size to the maximum size of any client
# connected to the *session*, constrain window size to the maximum size of any
# client connected to *that window*. Much more reasonable.
setw -g aggressive-resize on
# Toggle mouse on with ^B m
bind m \
set -g mode-mouse on \;\
set -g mouse-resize-pane on \;\
set -g mouse-select-pane on \;\
set -g mouse-select-window on \;\
display 'Mouse: ON'
# Toggle mouse off with ^B M
bind M \
set -g mode-mouse off \;\
set -g mouse-resize-pane off \;\
set -g mouse-select-pane off \;\
set -g mouse-select-window off \;\
display 'Mouse: OFF'
# loud or quiet?
# set-option -g visual-activity off
# set-option -g visual-bell off
# set-option -g visual-content off
# set-option -g visual-silence off
# set-window-option -g monitor-activity off
# set-window-option -g monitor-content on
# set-option -g bell-action none
이 질문은 중복될 수 있습니다.tmux 하단 바 색상 변경, 그러나 거기의 답변은 색상 선택과 다양한 설정에 대한 설명에 더 중점을 둡니다.
답변1
다음 줄입니다.
set -g message-style 'fg=colour232 bg=colour16 bold'
232개(대부분)는 검은색이고 16개도 검은색입니다.
message-style style Set status line message style. This is used for messages and for the command prompt. For how to specify style, see the STYLES section.
노력하다:
set -g message-style 'fg=white bg=black bold'