about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* die() on calloc failureHiltjo Posthuma2016-11-051-1/+1
| | | | thanks Markus Teich and David!
* die() consistency: always add newlineHiltjo Posthuma2016-08-123-8/+10
|
* config.def.h: style improvement, use color Scheme enumHiltjo Posthuma2016-06-281-4/+4
|
* import new drw from libsl and minor fixes.Markus Teich2016-06-265-208/+209
| | | | | - better scaling for occupied tag squares. - draw statusline first to omitt some complicated calculations.
* Configure geometry before applying rulesEric Pruitt2016-06-241-6/+7
| | | | | | Configuring geometry before applying rules makes it possible to have more complex constraints in applyrules that depend on the initial window dimensions and location.
* fix fullscreen clients not resized on X display resolution changeHiltjo Posthuma2015-12-191-1/+6
| | | | patch provided by Bert Münnich <ber.t_AT_posteo.de>, thanks!
* Shut up glibc about _BSD_SOURCE being deprecatedQuentin Rameau2015-12-191-1/+1
|
* code-style consistency 6.1Hiltjo Posthuma2015-11-081-433/+503
|
* unboolificationHiltjo Posthuma2015-11-082-78/+77
|
* sort include + whitespace fixHiltjo Posthuma2015-11-081-3/+3
|
* separate program-specific c99 bool and X11Hiltjo Posthuma2015-11-082-75/+77
| | | | | True, False are X11-specific (int), make sure to use c99 stdbool for program-specific things.
* Makefile: package all files with make distHiltjo Posthuma2015-11-081-2/+2
|
* setfullscreen: don't process the property twiceQuentin Rameau2015-11-071-2/+2
| | | | | | | | | | Some clients try to set _NET_WM_STATE_FULLSCREEN even when the window is already in fullscreen. For example, c->oldstate was set two times in a raw and window would then always be floating. We must check that it's not the case before processing it. (original patch modified with suggestion from Markus Teich <markus.teich@stusta.mhn.de>)
* sync updated drw code from dmenuHiltjo Posthuma2015-10-205-158/+164
| | | | | | important: - drw_rect: didn't use w and h, change the dwm code accordingly. - drw_text: text is NULL is not allowed, use drw_rect().
* dwm: use ecalloc, prevent theoretical overflowHiltjo Posthuma2015-10-201-6/+3
|
* cleanup, dont use c++ style commentsHiltjo Posthuma2015-10-201-4/+4
| | | | | | - signal: print error string. - die: start message with lower-case (consistency). - bump version to 2015.
* dwm: cleanup: free schemes and cursors as arrayHiltjo Posthuma2015-10-201-9/+8
|
* config.h: use common default font, pass Xft font name to dmenuHiltjo Posthuma2015-10-201-4/+2
| | | | dmenu uses Xft now (soon to be released).
* config.mk: add $FREETYPELIBS and $FREETYPEINC, simpler to override (ports ↵Hiltjo Posthuma2015-10-201-2/+8
| | | | and *BSDs)
* Add Xft and follback-fonts support to graphics libEric Pruitt2015-03-136-103/+299
|
* removed .hgtags, thanks Dimitris for spottingAnselm R Garbe2014-11-231-73/+0
|
* applied Hiltjo's resize/move limitationAnselm R Garbe2014-08-112-2/+12
| | | | | | "Limit the amount of updates when resizing or moving a window in floating mode to 60 times per second. This makes resizing and moving alot smoother and by limiting it it also uses alot less resources on my machine.
* same as before with dwm.c as wellAnselm R Garbe2014-05-291-1/+1
|
* updated copyright notice in LICENSE fileAnselm R Garbe2014-05-291-1/+1
|
* applied Lukas' focus suggestion at startup, thanksAnselm R Garbe2013-08-271-0/+1
|
* applied improved version of Martti Kühne's dmenu/multi monitor approach ↵Anselm R Garbe2013-08-022-1/+4
| | | | from dwm, no dmenuspawn required
* do not take our font declaration as default for stAnselm R Garbe2013-07-201-1/+1
|
* applied Jochen's drw_text patch, thanksAnselm R Garbe2013-06-231-1/+1
|
* applied Julian's enum approach,Anselm R Garbe2013-06-193-40/+37
| | | | however renamed theme into scheme resp. Theme into ClrScheme
* finished libsl/drw integrationAnselm R Garbe2013-06-163-264/+185
|
* include font argument for st by defaultAnselm R Garbe2013-05-021-1/+1
|
* added st to SEE ALSO sectionAnselm R Garbe2013-05-011-1/+2
|
* use st as default terminal from now onAnselm R Garbe2013-05-012-2/+2
|
* shut up about deprecated Xlib functionsAnselm R Garbe2013-05-011-1/+1
|
* renamed draw into drwAnselm R Garbe2013-04-176-268/+265
|
* continued with draw.c and draw.h implementation, now the integration beginsAnselm R Garbe2012-12-092-29/+71
|
* continued with draw.c abstraction, also started util.{h,c} implementation, ↵Anselm R Garbe2012-12-086-29/+80
| | | | that will be used by draw.c as well
* removed DDC, all is Draw-dependentanselm@garbe.us2012-11-182-82/+40
|
* continued, distinction of Draw and DDC is bad, needs to be mergedanselm@garbe.us2012-11-182-7/+14
|
* reverting the xkb dependency, I don't care if this function is deprecated, ↵anselm@garbe.us2012-11-181-9/+2
| | | | it seems it breaks other stuff instead.
* basic draw.c structureanselm@garbe.us2012-11-183-6/+149
|
* reverting to plain X11 fonts in order to implement draw.c defaultanselm@garbe.us2012-11-183-39/+69
|
* removed obsolete bugs from BUGS fileanselm@garbe.us2012-11-171-25/+0
|
* compile fixanselm@garbe.us2012-11-171-2/+2
|
* applied Neil Klopfstein's patch, slightly modifiedanselm@garbe.us2012-11-171-2/+8
|
* starting with initial draw.hanselm@garbe.us2012-11-172-0/+78
|
* incorporating Xft instead of cairo, cairo provides far too many optionsanselm@garbe.us2012-11-023-69/+39
|
* keep 6.1 intactanselm@garbe.us2012-07-081-1/+1
|
* reverted to old updategeom() after several complains, we need to optimize ↵anselm@garbe.us2012-07-082-54/+71
| | | | the old way
* applied James Turner's XkbKeycodeToKeysym patch, thanksanselm@garbe.us2012-06-231-1/+2
|
012-01-15 11:54:38 +0100 committer Araq <rumpf_a@web.de> 2012-01-15 11:54:38 +0100 removed nimKeepAlive as it's not necessary with interior pointer checking' href='/ahoang/Nim/commit/compiler/ccgcalls.nim?h=devel&id=1d1752cac75fd0c607624df7ca40b7a8cd9f54ce'>1d1752cac ^
703430787 ^

1d1752cac ^
703430787 ^

1d1752cac ^
703430787 ^
1d1752cac ^
703430787 ^

af792da0b ^
703430787 ^
703430787 ^
af792da0b ^
27dc9fcb8 ^
04300542d ^

703430787 ^
3c9e3a6a7 ^
af792da0b ^
703430787 ^
22dc76a36 ^
e817d5436 ^
703430787 ^

27dc9fcb8 ^
703430787 ^
27dc9fcb8 ^
3c9e3a6a7 ^
703430787 ^
632aece19 ^

161f6f722 ^

632aece19 ^

e817d5436 ^
632aece19 ^
9d4c4592f ^

632aece19 ^


04300542d ^

632aece19 ^








e817d5436 ^
632aece19 ^
ce5a1365c ^
9d4c4592f ^
632aece19 ^

9d4c4592f ^
632aece19 ^

e817d5436 ^
632aece19 ^








632aece19 ^


df1ec0939 ^
632aece19 ^
632aece19 ^





9d4c4592f ^
632aece19 ^


632aece19 ^
af792da0b ^
703430787 ^
af792da0b ^
703430787 ^
04300542d ^

703430787 ^
af792da0b ^
703430787 ^


1d1752cac ^
703430787 ^
e817d5436 ^

703430787 ^
3c9e3a6a7 ^
703430787 ^
e817d5436 ^
703430787 ^


3c9e3a6a7 ^
703430787 ^
3c9e3a6a7 ^

703430787 ^
af792da0b ^
703430787 ^

af792da0b ^
e817d5436 ^
04300542d ^

703430787 ^
af792da0b ^
703430787 ^


1d1752cac ^
e817d5436 ^
703430787 ^

e817d5436 ^
1d1752cac ^
703430787 ^


92b8fac94 ^
703430787 ^

e817d5436 ^
703430787 ^
e817d5436 ^
1d1752cac ^
703430787 ^

e817d5436 ^
703430787 ^



e817d5436 ^
703430787 ^
e817d5436 ^
df1ec0939 ^
703430787 ^



e817d5436 ^
df1ec0939 ^
703430787 ^

e817d5436 ^
703430787 ^






e817d5436 ^
df1ec0939 ^
703430787 ^
af792da0b ^
632aece19 ^


af792da0b ^





132b6b3ef ^
cd83cc81a ^

af792da0b ^

632aece19 ^


af792da0b ^





132b6b3ef ^
cd83cc81a ^

af792da0b ^
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332