about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* drastically changed updategeom() handling, see comment in updategeom() for ↵anselm@garbe.us2012-06-232-71/+54
| | | | details
* reversed Andreas Amann's fullscreen fix with the approach proposed by Gary ↵anselm@garbe.us2012-06-231-11/+10
| | | | | | Langshaw: - idea is not supporting movemouse/resizemouse/togglefloating for fullscreen windows - as fullscreen windows are broken anyways, they should only be adjusted by their own means
* added kludge to fix some input focus misbehavior in gedit and anjuta, thanks ↵anselm@garbe.us2012-04-151-1/+2
| | | | Martti Kühne
* applied Andreas Amanns' netwm_client_list patch, but with some indentation fixesanselm@garbe.us2012-03-251-1/+20
|
* applied Andreas Amann's netwm_active_window patch, thxanselm@garbe.us2012-03-251-3/+12
|
* applied Andreas Amann fullscreen fix, some minor modificationsanselm@garbe.us2012-03-171-3/+10
|
* unfocus on slow sloppy monitor focusConnor Lane Smith2012-02-101-0/+1
|
/mu/blame/056recipe_header.cc?h=main&id=b7cd91a6b407b4ab4f1365cff0cb56e48db4cb6b'>^
b24eb476 ^
5683823a ^

1ead3562 ^
5683823a ^











bcd33d6d ^
70f70118 ^



7ac8feef ^
b24eb476 ^
bdb6161b ^
7ac8feef ^
70f70118 ^





7ac8feef ^



















7ac8feef ^
802283e4 ^
b24eb476 ^

802283e4 ^
7ac8feef ^








1ead3562 ^
7ac8feef ^

1ead3562 ^
7ac8feef ^

1ead3562 ^
7ac8feef ^




1ead3562 ^
b436291f ^
7ac8feef ^
1ead3562 ^
7ac8feef ^

1ead3562 ^
7ac8feef ^
b436291f ^
7ac8feef ^






b24eb476 ^
7ac8feef ^



4c2229fb ^
3bfd75fc ^
7ac8feef ^
acc4792d ^
7ac8feef ^
4c2229fb ^
7ac8feef ^
3bfd75fc ^

acc4792d ^
7ac8feef ^



bcd33d6d ^

70f70118 ^

e6692482 ^
1ead3562 ^
70f70118 ^

7136ddd5 ^
1ead3562 ^
70f70118 ^
1ead3562 ^
70f70118 ^
04209f72 ^
c1585c88 ^
70f70118 ^

c1585c88 ^
d11bf882 ^
4637d58f ^
d11bf882 ^
b24eb476 ^
d11bf882 ^
1ead3562 ^
4637d58f ^
acc4792d ^
4637d58f ^

b24eb476 ^
d11bf882 ^
acc4792d ^
70f70118 ^



4637d58f ^

1ead3562 ^
4637d58f ^


1ead3562 ^
4637d58f ^
1ead3562 ^
4637d58f ^
c1585c88 ^

1ead3562 ^
c1585c88 ^

1ead3562 ^
c1585c88 ^





f7631430 ^
808e171d ^
c1585c88 ^

808e171d ^
d11bf882 ^

60c225ba ^
d11bf882 ^
b24eb476 ^
d11bf882 ^
1b76245c ^
d11bf882 ^
c1585c88 ^


9cfb86fa ^



1ead3562 ^
9cfb86fa ^

1ead3562 ^
9cfb86fa ^


1ead3562 ^
9cfb86fa ^


04209f72 ^
b2e4056d ^
9cfb86fa ^


d11bf882 ^


b766f5f8 ^
b24eb476 ^
d11bf882 ^
c4e143d6 ^
9cfb86fa ^
b24eb476 ^
d11bf882 ^
c4e143d6 ^
9cfb86fa ^
b24eb476 ^
d11bf882 ^
9f95c745 ^
b24eb476 ^
9cfb86fa ^
83d8299d ^
b7cd91a6 ^
b766f5f8 ^

c4e143d6 ^
9cfb86fa ^
b24eb476 ^
15c44292 ^
9cfb86fa ^
83d8299d ^
b7cd91a6 ^
b766f5f8 ^

c4e143d6 ^
9cfb86fa ^



70f70118 ^


5109e78f ^
1ead3562 ^
70f70118 ^

1ead3562 ^
70f70118 ^

9cfb86fa ^
1ead3562 ^
70f70118 ^


808e171d ^
c1585c88 ^
f7e75825 ^


d11bf882 ^


b24eb476 ^
d11bf882 ^
1ead3562 ^
d11bf882 ^
c1585c88 ^

1ead3562 ^

c1585c88 ^

d11bf882 ^

c1585c88 ^


d11bf882 ^
1ead3562 ^
c1585c88 ^
b24eb476 ^
c1585c88 ^

d11bf882 ^
c1585c88 ^
d11bf882 ^
c1585c88 ^
d11bf882 ^
c1585c88 ^
f7e75825 ^
70f70118 ^

813b93b8 ^
8de2764d ^
1ead3562 ^
8de2764d ^

1ead3562 ^
8de2764d ^



1ead3562 ^
8de2764d ^



5109e78f ^
1ead3562 ^
813b93b8 ^

1ead3562 ^
813b93b8 ^

9cfb86fa ^
813b93b8 ^
acc4792d ^
813b93b8 ^

5109e78f ^
1ead3562 ^
3a49e7e9 ^

1ead3562 ^
3a49e7e9 ^


1ead3562 ^
3a49e7e9 ^
acc4792d ^
a9a23371 ^
3a49e7e9 ^
c1585c88 ^
5109e78f ^
e765f9e7 ^










c1585c88 ^

1ead3562 ^
c1585c88 ^



1ead3562 ^
c1585c88 ^



4c2229fb ^



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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482