내 .screenrc에 다음 코드를 사용하면 GNU 화면이 기본 0 대신 숫자 1로 창 계산을 시작하도록 할 수 있었습니다.
# Get rid of screen 0
bind c screen 1
bind ^c screen 1
bind 0 select 10
.screenrc에서 창을 만들 때 screen 1
먼저 1을 시도한 다음 해당 창 번호가 사용되었는지 계산하는 데 사용했습니다.
답변1
해결책은 ~/.tmux.conf
다음과 같이 수정하는 것입니다.
# Start windows and panes at 1, not 0
set -g base-index 1
setw -g pane-base-index 1
편집: base-index와 달리 Pane-base-index는 창 옵션이므로 @Jogusa가 지적한 대로 setw를 사용해야 합니다.