TOOL설치

tmux

우와해커 2020. 7. 7. 14:17

https://edykim.com/ko/post/tmux-introductory-series-summary/
https://lukaszwrobel.pl/blog/tmux-tutorial-split-terminal-windows-easily/

 

 

설정파일 바로 적용
tmux source-file .tmux.conf

 

세션

■ 새 세션 생성
$ tmux new -s

 

■ 세션 이름 수정
ctrl + b, $

 

■ 세션 종료
$ (tmux에서) exit

 

■ 세션 중단하기 (detached)

ctrl + b, d

 

■ 세션 목록 보기 (list-session)

$ tmux ls

 

■ 세션 다시 시작
$ tmux a
$ tmux attach -t 세션번호 또는 세션이름

 

윈도우 관련(탭과 같은 개념)

■ 새 윈도우 생성
ctrl + b, c

 

■ 세션 생성시 윈도우랑 같이 생성
$ tmux new -s 세션이름 -n 윈도우 이름

 

■ 윈도우 이름 수정
ctrl + b, ,

 

■ 윈도우 종료
ctrl + b, &
ctrl + d

 

■ 윈도우 이동
ctrl + b, 0-9 : window number
n : next window
p : prev window
l : last window
w : window selector
f : find by name

틀 pane 관련

 

■ 틀 나누기
ctrl + b, % : 횡 분할
" : 종 분할

 

■ 틀 이동
ctrl + b, q 그리고 화면에 나오는 숫자키
ctrl + b, o : 순서대로 이동
ctrl + b, arrow : 방향키로 숑숑

 

■ 틀 삭제
ctrl + b, x
ctrl + d

 

■ 틀 사이즈 조절
(ctrl + b, :)
resize-pane -L 10
                -R 10
                -D 10
                -U 10

 

 

■ Pane switching with Alt+arrow
For pane switching, Alt+arrow key combination (which is default in Terminator) worked fine for me and didn’t cause any conflicts so far, so I think it will work fine in tmux, too. But it is of course a matter of taste and you can use whatever key you want. To switch panes with Alt, you can use these directives:

bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D

 

윈도우 색깔변경

■ default statusbar colors
set -g status-fg white
set -g status-bg black
set -g status-style bright

 

■ default window title colors
set-window-option -g window-status-style fg=white
set-window-option -g window-status-style bg=default
set-window-option -g window-status-style dim

 

■ Highlight active window
set-window-option -g window-status-current-style bg=red

 

마우스 활성화

set -g mouse on