I3
i3 는 동적 타일링 창 관리자로 wmii에서 영감을 받았으며 주로 개발자와 상급 사용자를 대상으로 한다.
클라이언트(창)는 컨테이너 내에서 나무 자료 구조로 구성된다. 나무는 수평이나 수직 분할로 가지를 치며 컨테이너는 스택이나 탭 배열로 설정할 수도 있다. 기존에 익숙한 플로팅 창도 타일링 창과 잘 맞지 않는 경우를 대비해 사용할 수 있으며 이 플로팅 창은 모든 타일링 창보다 위에 나타난다.
Key binding
New window -> Tabbed
mod+h
, mod+w
then mod+d
for the dmenu or the keys you use to open a new chrome.
You may want to add some keybindings for this reason. As you can see, I have $mod+Shift+[w/s]
bound to make the current selection a container, then switch it to tabbed/stacked mode.
bindsym $mod+s layout stacking
bindsym $mod+shift+s split h; split v; layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+shift+w split h; split v; layout tabbed
So with chrome selected, you'd hit $mod+Shift+w
and the new chrome window would be tabbed with the old one.