about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-05-17 14:46:06 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-05-17 14:46:06 +0100
commitbd67a82fb5a77638be365659a8b6aab4f3f5a35e (patch)
tree2a695696886a0258d53e44e4a904f219adad0114
parent14d8d828abbb91db3305dfa666c8c70358d1d3c7 (diff)
downloaddwm-bd67a82fb5a77638be365659a8b6aab4f3f5a35e.tar.gz
removed monocle for now
-rw-r--r--config.def.h1
-rw-r--r--dwm.13
-rw-r--r--dwm.c10
3 files changed, 0 insertions, 14 deletions
diff --git a/config.def.h b/config.def.h
index 9ce750e..9262025 100644
--- a/config.def.h
+++ b/config.def.h
@@ -27,7 +27,6 @@ Layout layouts[] = {
 	/* symbol     arrange  geom */
 	{ "[]=",      tile,    tilegeom }, /* first entry is default */
 	{ "><>",      NULL,             }, /* no layout function means floating behavior */
-	{ "<M>",      monocle, NULL     }, /* TODO: remove this */
 };
 
 /* key definitions */
diff --git a/dwm.1 b/dwm.1
index 7bacbc6..3b8bf1d 100644
--- a/dwm.1
+++ b/dwm.1
@@ -84,9 +84,6 @@ Toggle focused window between tiled and floating state.
 .B Mod1\-Tab
 Toggles to the previously selected tags.
 .TP
-.B Mod1\-r
-Re-applies tagging rules to all windows.
-.TP
 .B Mod1\-Shift\-[1..n]
 Apply
 .RB nth
diff --git a/dwm.c b/dwm.c
index 3dc6f84..f3254ae 100644
--- a/dwm.c
+++ b/dwm.c
@@ -151,7 +151,6 @@ void killclient(const char *arg);
 void manage(Window w, XWindowAttributes *wa);
 void mappingnotify(XEvent *e);
 void maprequest(XEvent *e);
-void monocle(void);
 void movemouse(Client *c);
 Client *nextunfloating(Client *c);
 void propertynotify(XEvent *e);
@@ -1013,15 +1012,6 @@ maprequest(XEvent *e) {
 }
 
 void
-monocle(void) {
-	Client *c;
-
-	for(c = clients; c; c = c->next)
-		if(!c->isfloating && isvisible(c))
-			resize(c, wx, wy, ww - 2 * c->bw, wh - 2 * c->bw, RESIZEHINTS);
-}
-
-void
 movemouse(Client *c) {
 	int x1, y1, ocx, ocy, di, nx, ny;
 	unsigned int dui;
ol) - also in man page' href='/acidbong/suckless/dwm/commit/screen.c?h=6.4&id=cee56d38632bbac08e7f59d58c7c7ab1370be329'>cee56d3 ^
29c26b8 ^































4cdbd52 ^
cee56d3 ^
4cdbd52 ^



cdbc84b ^
4cdbd52 ^



cdbc84b ^












29c26b8 ^





4cdbd52 ^

cee56d3 ^
4cdbd52 ^








cdbc84b ^
4cdbd52 ^









5a03daf ^
4cdbd52 ^
6d5f67a ^
5a03daf ^
4cdbd52 ^
238dd5d ^
4cdbd52 ^









879241c ^





















6d5f67a ^




















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