index.md - sites - public wiki contents of suckless.org
(HTM) git clone git://git.suckless.org/sites
(DIR) Log
(DIR) Files
(DIR) Refs
---
index.md (956B)
---
1 Three Column Layout
2 ===================
3
4 Description
5 -----------
6 Three Column Layout is a new layout with a wide master panel centered on
7 the screen.
8
9 +-----+-------------+-----+
10 | | | |
11 |-----+ +-----+
12 | | M | |
13 |-----+ +-----+
14 | | | |
15 +-----+-------------+-----+
16
17 Usage
18 -----
19 1. Include the `tcl.c` source file and add `tcl` to the `Layout` section of
20 your `config.h` file. Example from `config.default.h`:
21
22 #include "tcl.c"
23 static Layout layout[] = {
24 /* symbol function */
25 { "[]=", tile }, /* first entry is default */
26 { "><>", floating },
27 { "|||", tcl },
28 };
29
30 Download
31 --------
32 * [tcl.c layout](tcl.c)
33
34 Maintainer
35 ----------
36 * Chris Truett - <chris.truett@gmail.com>
37
38 Note
39 ----
40 This layout idea was found in a rough form in this
41 [mailing list post](//lists.suckless.org/dev/1008/5506.html).