remi / teamocil

There's no I in Teamocil. At least not where you think. Teamocil is a simple tool used to automatically create windows and panes in tmux with YAML files.
MIT License
2.36k stars 101 forks source link

Width and Height? #80

Closed KyleAMathews closed 10 years ago

KyleAMathews commented 10 years ago

Did those get chopped?

Also, what does the layout key do? There doesn't seem to be anything in the code for it. So panes are always just laid out evenly?

remi commented 10 years ago

Yes, they were removed in favor of layouts. Layouts come directly from tmux. From tmux documentation:

even-horizontal
        Panes are spread out evenly from left to right across the window.

even-vertical
        Panes are spread evenly from top to bottom.

main-horizontal
        A large (main) pane is shown at the top of the window and the remaining panes are spread from left to right in the leftover space at the bottom.  Use
        the main-pane-height window option to specify the height of the top pane.

main-vertical
        Similar to main-horizontal but the large pane is placed on the left and the others spread from top to bottom along the right.  See the
        main-pane-width window option.

tiled   Panes are spread out as evenly as possible over the window in both rows and columns.

Hope that helps!

KyleAMathews commented 10 years ago

Thanks!