From 7bafa1a30512be27fedb8ab9bed13cdf4eb7ccda Mon Sep 17 00:00:00 2001 From: cinco euzebio Date: Sun, 1 Mar 2026 05:07:03 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs:=20add=20ASCII=20art=20prev?= =?UTF-8?q?iews=20for=20each=20available=20tmux=20layout=20in=20README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 55 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 19ad859..d74698a 100644 --- a/README.md +++ b/README.md @@ -158,11 +158,61 @@ panes = [] ### Available Layouts -- `main-horizontal` - Main pane on top, others below -- `main-vertical` - Main pane on left, others on right -- `tiled` - All panes tiled -- `even-horizontal` - All panes in horizontal row -- `even-vertical` - All panes in vertical column +**`main-horizontal`** — Main pane on top, others below + +``` +┌──────────────────────┐ +│ │ +│ main pane │ +│ │ +├──────────┬───────────┤ +│ pane 2 │ pane 3 │ +└──────────┴───────────┘ +``` + +**`main-vertical`** — Main pane on left, others on right + +``` +┌─────────────┬────────┐ +│ │ pane 2 │ +│ main pane ├────────┤ +│ │ pane 3 │ +│ ├────────┤ +│ │ pane 4 │ +└─────────────┴────────┘ +``` + +**`tiled`** — All panes tiled equally + +``` +┌───────────┬──────────┐ +│ pane 1 │ pane 2 │ +├───────────┼──────────┤ +│ pane 3 │ pane 4 │ +└───────────┴──────────┘ +``` + +**`even-horizontal`** — All panes side by side + +``` +┌────────┬────────┬────────┐ +│ │ │ │ +│ pane 1 │ pane 2 │ pane 3 │ +│ │ │ │ +└────────┴────────┴────────┘ +``` + +**`even-vertical`** — All panes stacked + +``` +┌──────────────────────┐ +│ pane 1 │ +├──────────────────────┤ +│ pane 2 │ +├──────────────────────┤ +│ pane 3 │ +└──────────────────────┘ +``` ### Panes