about summary refs log tree commit diff stats
path: root/tile.c
Commit message (Collapse)AuthorAgeFilesLines
* updateAnselm R Garbe2008-05-191-4/+0
|
* updatetilegeom should be fine for setmfactAnselm R Garbe2008-05-191-1/+1
|
* recent changes, introduced togglebar, changed some defines into variable ↵Anselm R Garbe2008-05-191-6/+7
| | | | declarations where possible
* s/tilegeom/updatetilegeom/Anselm R Garbe2008-05-171-16/+16
|
* moved all tile()-related stuff into tile.c which is included from ↵Anselm R Garbe2008-05-171-0/+103
| | | | config.def.h, the default dwm is now nearly independent from the arrange() algorithm in use
* micromizing dwm step 1Anselm R. Garbe2007-09-151-85/+0
|
* introduced new define RESIZEHINTS, which allows to enable/disable size hint ↵Anselm R. Garbe2007-09-091-1/+1
| | | | handling in tiled resizals
* prepared 4.4.1 bugfix and minor feature enhancement release 4.4.1Anselm R. Garbe2007-08-261-2/+1
|
* applied Gottox mwfact patchAnselm R. Garbe2007-08-181-8/+7
|
* applied Jukka Salmi's setmwfact patchAnselm R. Garbe2007-08-171-5/+11
|
* applied Jukka's patchAnselm R. Garbe2007-08-161-1/+3
|
* small bugfixAnselm R. Garbe2007-08-131-1/+1
|
* made tile simplierAnselm R. Garbe2007-08-131-23/+20
|
* made Layout a static struct in layout.c, added some convenience getters in ↵Anselm R. Garbe2007-08-131-9/+4
| | | | layout.c, now lt->arrange accesses are not possible anymore, arrange() is the super-arrange function which sets up all layouts
* renamed MASTER into MWFACT, master into mwfact, and incmaster into addtomwfactAnselm R. Garbe2007-08-121-7/+6
|
* separated layout-specific stuff into separate .h and .c files which are ↵Anselm R. Garbe2007-08-111-0/+88
| | | | included in config.h resp. config.mk - this allows writing layouts for dwm without any need to patch existing code
* merged tag.c, view.c and tile.c to manage.cAnselm R. Garbe2007-02-191-131/+0
|
* added some new convenience functionsAnselm R. Garbe2007-02-191-4/+1
|
* some more refactoringAnselm R. Garbe2007-02-191-2/+4
|
* introduced tile.c, some refactoring of functionsAnselm R. Garbe2007-02-191-0/+132
emacs.d/lisp/init-paredit.el?id=a7055e06482c87468382b97c9a1000f251887667'>^
8c8117b ^


























903e201 ^
8c8117b ^






d0db566 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191