index.md - sites - public wiki contents of suckless.org | |
git clone git://git.suckless.org/sites | |
Log | |
Files | |
Refs | |
--- | |
index.md (2070B) | |
--- | |
1 fibonacci layouts | |
2 ================= | |
3 | |
4 Description | |
5 ----------- | |
6 This patch adds two new layouts (`spiral` and `dwindle`) that arranges a… | |
7 windows in Fibonacci tiles: The first window uses half the screen, the s… | |
8 the half of the remainder, etc. ASCII art and a real screenshot of the s… | |
9 arrangement can be seen below. | |
10 | |
11 +-----------+-----------+ +-----------+-----------+ | |
12 | | | | | | | |
13 | | 2 | | | 2 | | |
14 | | | | | | | |
15 | 1 +--+--+-----+ | 1 +-----+-----+ | |
16 | | 5|-.| | | | | 4 | | |
17 | +--+--+ 3 | | | 3 +--+--+ | |
18 | | 4 | | | | | 5|-.| | |
19 +-----------+-----+-----+ +-----------+-----+-----+ | |
20 spiral dwindle | |
21 | |
22 [", spiral }, \ | |
39 { "[\\]", dwindle }, \ | |
40 }; | |
41 | |
42 Download | |
43 -------- | |
44 * [dwm-5.2-fibonacci.diff](http://www.aplusbi.com/dwm/dwm-5.2-fibonacci.… | |
45 * [dwm-5.1-fibonacci.diff](http://schot.a-eskwadraat.nl/files/dwm-5.1-fi… | |
46 | |
47 Author | |
48 ------ | |
49 * Jeroen Schot - <[email protected]> | |
50 | |
51 Joe Thornber's spiral tiling for [Xmonad](http://www.xmonad.org) formed … | |
52 inspiration for this patch. Thanks to Jan Christoph Ebersbach for updati… | |
53 patch for versions 4.5 to 4.9. |