4
그놈 터미널 안에 tmux를 사용하고 있습니다.터미널 창이 최대화 될 때 tmux 막대와 터미널 창 사이의 불쾌한 삽입
처음으로 창을 열면 (기본 크기는 80x24입니다) tmux 표시 줄이 창 하단에 꼭 맞습니다. 그러나 터미널 창을 최대화하면 tmux 표시 줄 아래에 큰 차이가 생깁니다.
set-option -g default-command bash
# remap prefix to Control + a
unbind-key C-b
set-option -g prefix C-a
bind-key C-a send-prefix
bind-key C-a-h split-window -h #Split panes vertically
# time/no(0) time between C-a and command
set -s escape-time 0
#set-option -u repeat-time #global setting, "delete" repeat-time
set-option -g -q mouse on #activate mouse
가 어떻게이처럼 내가 터미널 창을 최대화 할 때 TMUX 줄이 작은에 앉아받을 수 있나요 :
maximised gnome-terminal tmux session with gap under tmux bar
이 내 .tmux.conf입니까?
80x24 gnome-terminal window with tmux bar located correctly
정말 고마워요! – HighDensityAwesome