답변1
경로 기본 이름을 창 이름으로 인쇄합니다.
이렇게 하면 텍스트가 더 작아지기 때문에 관리하기가 더 쉬워집니다. 당신이 하고 있는 일이 딱 맞을 수도 있어요.
멀티플렉서
- 멀티플렉서 2.9a
예시 bash 스크립트는 #{pane_current_path) arg를 읽습니다. basename
시작 경로를 자르고 현재 경로만 표시합니다. 창 ID로 사용하면 괜찮습니다.
~/.tmux_path.sh
#!/bin/sh
printf '\033%s\007' $(basename $1) # show full path use $1 instead of $(basename $1)
스크립트를 실행 가능하게 만들기
chmod +x ~/.tmux_path.sh
~/.tmux.conf
set -g status-interval 1
set -g window-status-current-format "[#[fg=white] #(~/.tmux_path.sh #{pane_current_path})]"
set -g window-status-format "#[fg=black] #(~/.tmux_path.sh #{pane_current_path})"