sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 888ac1793545dcf3bf011c5492b0eb8388aaa291
parent d026cbb170671fd30323b67f149a4d6293955f42
Author: memeplex <carlosjosepita@gmail.com>
Date:   Sun, 12 Jan 2014 21:23:49 -0300

xtile patch: new documentation section.

Diffstat:
Mdwm.suckless.org/patches/xtile.md | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/dwm.suckless.org/patches/xtile.md b/dwm.suckless.org/patches/xtile.md @@ -75,6 +75,22 @@ For example, here is the configuration code for the default presets described ab { MODKEY|ShiftMask, XK_t, setdirs, {.v = (int[]){ DirHor, DirVer, DirVer } } }, { MODKEY|ControlMask, XK_t, setdirs, {.v = (int[]){ DirVer, DirHor, DirHor } } }, +Layout symbol +------------- + +The layout symbol will probably look cryptic at first sight but it's very easily decoded. +It consists of three characters, one for the direction of each area: + +* Global area: '<', '>', 'v', '^', just think of it as an arrow that points in the + direction of the master area. + +* Master area: '|' for vertically tiled masters and '-' for horizontally tiled masters. + +* Stack area: same as for the master area. + +For example, '<||' stands for the default right stack tile provided by dwm and '^--' +stands for bstack (as defined by the bottom stack patch). + Digressions -----------