about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* fixed some issues due to the Arg->const char * transitionAnselm R. Garbe2007-02-222-9/+10
|
* restoring default keybindings as Sander complainedAnselm R. Garbe2007-02-222-8/+8
|
* replaced Arg union with const char *arg, seems cleaner to me, even if we ↵Anselm R. Garbe2007-02-229-185/+190
| | | | need atoi() in some places
* re-added xterm to config.default.hAnselm R. Garbe2007-02-221-0/+1
|
* removed button4/5-bindings for incnmaster on mode label - that is misleadingAnselm R. Garbe2007-02-222-14/+0
|
* fixed order of key bindings described in dwm.1Anselm R. Garbe2007-02-221-5/+5
|
* status needs update even in togglemax() - since we got an indicator for thisAnselm R. Garbe2007-02-221-0/+1
|
* reusing drawsquare for client title, empty square before title means ↵Anselm R. Garbe2007-02-222-24/+6
| | | | versatile window, filled square before title means versatile maximized window.
* dwm draws a small caret before the client title if it's a versatile clientAnselm R. Garbe2007-02-222-6/+31
|
* nah grouped keybindings by contextAnselm R. Garbe2007-02-222-47/+46
|
* fixed exit condition in togglemax()Anselm R. Garbe2007-02-221-1/+1
|
* fixing missing extern declars in dwm.h for {de,at}tach()Anselm R. Garbe2007-02-221-0/+2
|
* several changes, made togglemax extern and separated it from zoom() - moved ↵Anselm R. Garbe2007-02-2210-183/+184
| | | | zoom() and togglemax() into layout.c, changed void (*func)(Arg *) into void (*func)(Arg), changed default keybindings of focusnext/focusprev and incmasterw to h/j/k/l accordingly, made keys in config*h appear alphabetically (special keys first), renamed resizemaster into incmasterw, renamed MASTER into MASTERWIDTH
* just ignore the FD_ISSET check in main.c of xfd, just call XPending (which ↵Anselm R. Garbe2007-02-211-6/+5
| | | | does the same afair)
* optimizing background color of terminalsAnselm R. Garbe2007-02-211-1/+1
|
* using 333 as background, hey proggyclean is really goodAnselm R. Garbe2007-02-211-1/+1
|
* switching to 13pt proggyclean (this fits better my 1920x1200 resolution than ↵Anselm R. Garbe2007-02-211-1/+1
| | | | 12pt terminus which is too small or 14pt terminus which is too fat)
* using smaller fontAnselm R. Garbe2007-02-211-1/+1
|
* using a green selborderAnselm R. Garbe2007-02-211-1/+1
|
* reverting to bg 555Anselm R. Garbe2007-02-212-2/+2
|
* s/555/357/ for SELCOLORAnselm R. Garbe2007-02-211-1/+1
|
* switching to urxvtcd for the moment (the uxterm flicker makes me headaches, ↵Anselm R. Garbe2007-02-211-1/+1
| | | | st is really highest prio now)
* Added tag 3.6.1 for changeset 20ec6976cee1Anselm R. Garbe2007-02-211-0/+1
|
* creating 3.6.1 3.6.1Anselm R. Garbe2007-02-211-1/+1
|
* reverted accidental removal of sx, syAnselm R. Garbe2007-02-212-5/+6
|
* removed some global vars which should be static insteadAnselm R. Garbe2007-02-212-8/+7
|
* moved focus{next,prev} and nexttiled from client.c to layout.c (because ↵Anselm R. Garbe2007-02-213-50/+50
| | | | those are not client-specific), moved toggleversatile() from layout.c to client.c (because those are client-specific)
* cleaned up and commented the config.*.hAnselm R. Garbe2007-02-213-31/+35
|
* Added tag 3.6 for changeset 75b1b25fe0d7e29400baf30568153f668324928bAnselm R. Garbe2007-02-211-0/+1
|
* fixed quoting and a comment 3.6Anselm R. Garbe2007-02-212-2/+2
|
* renamed setfont to initfont, getcolor to initcolorAnselm R. Garbe2007-02-201-29/+29
|
* fixed orderAnselm R. Garbe2007-02-201-11/+11
|
* added draw.c again (except getcolor and setfont which are helpers in main.c)Anselm R. Garbe2007-02-204-133/+144
|
* separating drawsquare from drawtext, made drawtext externAnselm R. Garbe2007-02-202-49/+65
|
* rechecked with OpenBSDAnselm R. Garbe2007-02-201-0/+1
|
* split screen.c into layout.c and tag.c (because the view is an implicit ↵Anselm R. Garbe2007-02-204-152/+160
| | | | mixture of both)
* using eprint instead of fputsAnselm R. Garbe2007-02-191-6/+3
|
* replaced togglelayout with setlayoutAnselm R. Garbe2007-02-195-21/+29
|
* changed some odering in config*.hAnselm R. Garbe2007-02-192-20/+20
|
* renamed Client->versatile and Rule->versatile into Client->isversatile resp. ↵Anselm R. Garbe2007-02-195-16/+16
| | | | Rule->isversatile
* renames swim[ming] into versatileAnselm R. Garbe2007-02-197-64/+64
|
* renamed floating into swimming (this does not clash with C naming ↵Anselm R. Garbe2007-02-197-96/+96
| | | | conventions and fits better the fish symbol) - also in man page
* removed debug compile flagsAnselm R. Garbe2007-02-191-2/+2
|
* introduced Layout structAnselm R. Garbe2007-02-199-82/+115
|
* some more code polishingAnselm R. Garbe2007-02-191-1/+2
|
* forgot an extern declarationAnselm R. Garbe2007-02-192-1/+2
|
* bugfix of transient handlingAnselm R. Garbe2007-02-191-8/+8
|
* removed procevent, more refactoringAnselm R. Garbe2007-02-193-14/+6
|
* draw.c is useless (belongs to main.c now)Anselm R. Garbe2007-02-196-195/+178
|
* renamed view.c into screen.cAnselm R. Garbe2007-02-194-69/+67
|
m.1?h=5.1&id=0d9d3e79e925f9c049e5e1487a25e8a1a63db44e'>^
7ab8c87 ^
3af6434 ^
ee8fb0c ^
2122e39 ^

ee8fb0c ^
2122e39 ^

ee8fb0c ^
5871008 ^
6499fc4 ^
ee8fb0c ^
5871008 ^
9066ee2 ^
ee8fb0c ^
338c083 ^
352cae4 ^
ee8fb0c ^
1549faf ^
7ab8c87 ^

1549faf ^
ee8fb0c ^
42fd392 ^

ee8fb0c ^
df74b26 ^
7ab8c87 ^

df74b26 ^
ee8fb0c ^
7ab8c87 ^
45aea23 ^
ee8fb0c ^
338c083 ^
1549faf ^
ee8fb0c ^
338c083 ^
8dc8605 ^
ee8fb0c ^
df74b26 ^
7ab8c87 ^

1549faf ^
ee8fb0c ^
7ab8c87 ^
daae3bb ^
ee8fb0c ^
3e06ede ^
7ab8c87 ^

4bb89e2 ^
ee8fb0c ^
7ab8c87 ^
2b35fae ^
0c3544d ^
ee8fb0c ^
338c083 ^
0e5c819 ^
ee8fb0c ^
5871008 ^
4bd0d33 ^
ee8fb0c ^
338c083 ^
0c3544d ^
7ab8c87 ^
dc5c070 ^
7e98db2 ^

bced907 ^
60b3dce ^
21bd90d ^
c8f96b5 ^
4bb89e2 ^
c8f96b5 ^



c7da124 ^


c8f96b5 ^

124866e ^







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