summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-11 19:51:38 +0200
committerhut <hut@lavabit.com>2011-10-11 19:51:38 +0200
commitb15e4bfba98399a058ebfdab3840849a32232c86 (patch)
tree3dba3e6a6b0980418263f77b93dce7b65117070e
parentde28d6df4179500c9048f177dcc1f94214fdad00 (diff)
downloadranger-b15e4bfba98399a058ebfdab3840849a32232c86.tar.gz
defaults/options: more documentation
-rw-r--r--ranger/defaults/options.py132
1 files changed, 88 insertions, 44 deletions
diff --git a/ranger/defaults/options.py b/ranger/defaults/options.py
index 1328f2c5..3b44d4f6 100644
--- a/ranger/defaults/options.py
+++ b/ranger/defaults/options.py
@@ -1,35 +1,18 @@
+# -*- coding: utf-8 -*-
 # Copyright (C) 2009, 2010, 2011  Roman Zimbelmann <romanz@lavabit.com>
+# This configuration file is licensed under the same terms as ranger.
+# ===================================================================
+# This is the main configuration file of ranger.  It consists of python
+# code, but fear not, you don't need any python knowledge for changing
+# the settings.
 #
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
+# Lines beginning with # are comments.  To enable a line, remove the #.
 #
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-"""
-This is the default configuration file of ranger.
-
-There are two ways of customizing ranger.  The first and recommended
-method is creating a file at ~/.config/ranger/options.py and adding
-those lines you want to change.  It might look like this:
-
-from ranger.api.options import *
-preview_files = False  # I hate previews!
-max_history_size = 2000  # I can afford it.
-
-The other way is directly editing this file.  This will make upgrades
-of ranger more complicated though.
-
-Whatever you do, make sure the import-line stays intact and the type
-of the values stay the same.
-"""
+# You can customize ranger in the file ~/.config/ranger/options.py.
+# It has the same syntax as this file.  In fact, you can just copy this
+# file there with `ranger --copy-config=options' and make your modifications.
+# But make sure you update your configs when you update ranger.
+# ===================================================================
 
 from ranger.api.options import *
 
@@ -134,22 +117,83 @@ sort_directories_first = True
 # (Especially on xterm)
 xterm_alt_key = False
 
+# The color scheme overlay.  Explained below.
+colorscheme_overlay = None
 
-# Apply an overlay function to the colorscheme.  It will be called with
-# 4 arguments: the context and the 3 values (fg, bg, attr) returned by
-# the original use() function of your colorscheme.  The return value
-# must be a 3-tuple of (fg, bg, attr).
-# Note: Here, the colors/attributes aren't directly imported into
-# the namespace but have to be accessed with color.xyz.
-def colorscheme_overlay(context, fg, bg, attr):
-	if context.directory and attr & color.bold and \
-			not any((context.marked, context.selected)):
-		attr ^= color.bold  # I don't like bold directories!
+## Apply an overlay function to the colorscheme.  It will be called with
+## 4 arguments: the context and the 3 values (fg, bg, attr) returned by
+## the original use() function of your colorscheme.  The return value
+## must be a 3-tuple of (fg, bg, attr).
+## Note: Here, the colors/attributes aren't directly imported into
+## the namespace but have to be accessed with color.xyz.
+
+#from ranger.gui import color
+#def colorscheme_overlay(context, fg, bg, attr):
+#	if context.directory and attr & color.bold and \
+#			not any((context.marked, context.selected)):
+#		attr ^= color.bold  # I don't like bold directories!
+#
+#	if context.main_column and context.selected:
+#		fg, bg = color.red, color.default  # To highlight the main column!
+#
+#	return fg, bg, attr
 
-	if context.main_column and context.selected:
-		fg, bg = color.red, color.default  # To highlight the main column!
 
-	return fg, bg, attr
+# ===================================================================
+# Beware: from here on, you are on your own.  This part requires python
+# knowledge.
+#
+# Since python is a dynamic language, it gives you the power to replace any
+# part of ranger without touching the code.  This is commonly referred to as
+# Monkey Patching and can be helpful if you, for some reason, don't want to
+# modify rangers code directly.  Just remember: the more you mess around, the
+# more likely it is to break when you switch to another version.
+#
+# Here are some practical examples of monkey patching.
+#
+# Technical information:  This file is imported as a python module.  If a
+# variable has the name of a setting, ranger will attempt to use it to change
+# that setting.  You can write "del <variable-name>" to avoid that.
+# ===================================================================
+# Add a new sorting algorithm: Random sort.
+# Enable this with :set sort=random
+
+#from ranger.fsobject.directory import Directory
+#from random import random
+#Directory.sort_dict['random'] = lambda path: random()
+
+# ===================================================================
+# A function that changes which files are displayed.  This is more powerful
+# than the hidden_filter setting since this function has more information.
+
+## Save the original filter function
+#import ranger.fsobject.directory
+#old_accept_file = ranger.fsobject.directory.accept_file
+#
+## Define a new one
+#def accept_file_MOD(fname, mypath, hidden_filter, name_filter):
+#	if hidden_filter and mypath == '/' and fname in ('boot', 'sbin', 'proc', 'sys'):
+#		return False
+#	else:
+#		return old_accept_file(fname, mypath, hidden_filter, name_filter)
+#
+## Overwrite the old function
+#import ranger.fsobject.directory
+#ranger.fsobject.directory.accept_file = accept_file_MOD
 
-# The above function was just an example, let's set it back to None
-colorscheme_overlay = None
+# ===================================================================
+# A function that adds an additional macro.  Test this with :shell -p echo %date
+
+## Save the original macro function
+#import ranger.core.actions
+#old_get_macros = ranger.core.actions.Actions._get_macros
+#
+## Define a new macro function
+#import time
+#def get_macros_MOD(self):
+#	macros = old_get_macros(self)
+#	macros['date'] = time.strftime('%m/%d/%Y')
+#	return macros
+#
+## Overwrite the old one
+#ranger.core.actions.Actions._get_macros = get_macros_MOD
itle='author Anselm R. Garbe <garbeam@wmii.de> 2006-07-12 16:00:51 +0200 committer Anselm R. Garbe <garbeam@wmii.de> 2006-07-12 16:00:51 +0200 added grid mode on Mod1Mask g' href='/acidbong/suckless/dwm/commit/client.c?h=1.7.1&id=4641aa2925731ac180b08c80f57db176391ea4a9'>4641aa2 ^
c47da14 ^
6db5ffb ^
efa7e51 ^
6db5ffb ^
efa7e51 ^





2e836ec ^
6db5ffb ^

ce846e9 ^
efa7e51 ^






c47da14 ^

efa7e51 ^

c47da14 ^

efa7e51 ^






c47da14 ^
efa7e51 ^

c47da14 ^
efa7e51 ^
c47da14 ^


efa7e51 ^






c47da14 ^

da2bbd3 ^


ce846e9 ^
efa7e51 ^











da2bbd3 ^


ce846e9 ^
c47da14 ^
4641aa2 ^

3aad922 ^
4641aa2 ^
3aad922 ^
ce846e9 ^
3aad922 ^


efa7e51 ^
3aad922 ^
efa7e51 ^
3aad922 ^
efa7e51 ^
3aad922 ^




efa7e51 ^
3aad922 ^













efa7e51 ^







4641aa2 ^

2e836ec ^
4641aa2 ^


c47da14 ^
4641aa2 ^
c47da14 ^
4641aa2 ^
efa7e51 ^
4641aa2 ^
c47da14 ^
efa7e51 ^
c47da14 ^
c47da14 ^








efa7e51 ^
c47da14 ^

efa7e51 ^

c47da14 ^

efa7e51 ^
c47da14 ^

4641aa2 ^


c47da14 ^
4641aa2 ^
efa7e51 ^
4641aa2 ^
efa7e51 ^

4641aa2 ^
efa7e51 ^
4641aa2 ^

dfd84f9 ^


da2bbd3 ^




9e8b325 ^

dfd84f9 ^





b9da4b0 ^
3399650 ^

439e15d ^


8a8b795 ^
439e15d ^


















dfd84f9 ^
439e15d ^

0053620 ^
a05beb6 ^






83d2390 ^























2e836ec ^



a05beb6 ^


8b59083 ^
dfd84f9 ^












3399650 ^

efa7e51 ^



83d2390 ^
efa7e51 ^
83d2390 ^
9e8b325 ^
4641aa2 ^
dfd84f9 ^
3399650 ^
0a638a4 ^
3399650 ^

3aad922 ^




































3399650 ^
0053620 ^
439e15d ^
efa7e51 ^
439e15d ^
439e15d ^


896f08d ^


a05beb6 ^
8b59083 ^
2e836ec ^
efa7e51 ^
a05beb6 ^
dfd84f9 ^

439e15d ^
439e15d ^

2a0fc84 ^
439e15d ^
896f08d ^
a05beb6 ^
439e15d ^

0053620 ^
da2bbd3 ^
3aad922 ^
c47da14 ^
efa7e51 ^


c47da14 ^
9e8b325 ^
dfd84f9 ^

48b6e9a ^




b9da4b0 ^
ce846e9 ^
3aad922 ^



0053620 ^
439e15d ^
b9da4b0 ^
2e836ec ^





















































da2bbd3 ^
2e836ec ^
b9da4b0 ^



da2bbd3 ^











dfd84f9 ^
a05beb6 ^
b9da4b0 ^


a05beb6 ^



2e836ec ^
b9da4b0 ^

b9da4b0 ^
b9da4b0 ^


0053620 ^
d7e1708 ^
0053620 ^

439e15d ^


0053620 ^
439e15d ^
efa7e51 ^

0053620 ^


b9da4b0 ^
0053620 ^

efa7e51 ^






c47da14 ^
0053620 ^

439e15d ^
0053620 ^

ce846e9 ^
efa7e51 ^

439e15d ^
16c67f3 ^
2a0fc84 ^



efa7e51 ^
2a0fc84 ^



0053620 ^
16c67f3 ^



efa7e51 ^
16c67f3 ^



3399650 ^
586f663 ^


da2bbd3 ^
efa7e51 ^
dfd84f9 ^
586f663 ^
650a1fb ^

586f663 ^
650a1fb ^
da2bbd3 ^

650a1fb ^
9e8b325 ^
650a1fb ^
da2bbd3 ^

650a1fb ^
9e8b325 ^
650a1fb ^

896f08d ^
83d2390 ^
586f663 ^
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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577




                                                              
                   
                  

                      
                      
 
                
 
                                       
 


                                                       
 


               
                                                


                 

              
 
                         
 
                        




                                                            


                                      
                      
                   
 
 
    
             
 
                
                       





                                      
                                        

 
    






                      

             

                 

                       






                                              
 

                                                          
            
                                                 


                      






                                                          

                  


                  
                           











                                           


                                        
    
                

                  
                       
 
                    
                         


                                               
 
                                        
 
                                                 
                                   




                                          
                         













                                                        







                                           

                 
                                        


    
               
 
                  
 
                
                       
 
                                                                               
                          








                         
                

                       

                                  

                          
                                

                         


    
               
 
                
                       

                                                                                
            
                                           

 


                       




                                  

                                                                    





                                                                     
 

                      


                           
                           


















                                                                              
                        

 
    






                                                                         























                                            



                                           


    
                 












                                    

                



                                                       
         
                
                                    
                                             
                       
                                                                      
                    
                                        

 




































                                                                                                             
    
                                       
 
                       
                                 


                                     


                                 
                          
                   
                      
                                     
                       

                                                                                    
                                                     

                                               
                                      
 
                                                                       
                                                                     

                                                                               
 
                       
                     
 


                                               
 
                                              

                                  




                                                                           
                                                                 
                      



                              
 
 
    





















































                                             
 
    



                          











                                                    
                        
                                                               


                                 



                        
                                   

                                    
                                                                          


                    
          
                                                     

                 


    
                   
 

                   


                                              
                                                           

                                      






                                                          
 

                
                    

                                        
                      

                           
 
 



                  
                                        



                                 
 



                   
                                        



                                 
 


                      
              
                    
                       
 

                        
 
                 

                                    
                                     
                                                                  
                                               

                 
                     
                                               

                                                    
                                                  
                    
 
/*
 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
 * See LICENSE file for license details.
 */

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <X11/Xatom.h>
#include <X11/Xutil.h>

#include "dwm.h"

static void (*arrange)(Arg *) = tiling;

static Rule rule[] = {
	{ "Firefox-bin", "Gecko", { [Twww] = "www" } },
};

static Client *
next(Client *c)
{
	for(; c && !c->tags[tsel]; c = c->next);
	return c;
}

void
zoom(Arg *arg)
{
	Client **l, *old;

	if(!(old = sel))
		return;

	for(l = &clients; *l && *l != sel; l = &(*l)->next);
	*l = sel->next;

	old->next = clients; /* pop */
	clients = old;
	sel = old;
	arrange(NULL);
	focus(sel);
}

void
max(Arg *arg)
{
	if(!sel)
		return;
	sel->x = sx;
	sel->y = sy;
	sel->w = sw - 2 * sel->border;
	sel->h = sh - 2 * sel->border;
	craise(sel);
	resize(sel);
	discard_events(EnterWindowMask);
}

void
view(Arg *arg)
{
	tsel = arg->i;
	arrange(NULL);
}

void
tag(Arg *arg)
{
	int i, n;
	if(!sel)
		return;

	if(arg->i == tsel) {
		for(n = i = 0; i < TLast; i++)
			if(sel->tags[i])
				n++;
		if(n < 2)
			return;
	}

	if(sel->tags[arg->i])
		sel->tags[arg->i] = NULL; /* toggle tag */
	else
		sel->tags[arg->i] = tags[arg->i];
	arrange(NULL);
}

static void
ban_client(Client *c)
{
	XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
	XMoveWindow(dpy, c->title, c->tx + 2 * sw, c->ty);
}

void
floating(Arg *arg)
{
	Client *c;

	arrange = floating;
	for(c = clients; c; c = c->next) {
		if(c->tags[tsel])
			resize(c);
		else
			ban_client(c);
	}
	if(sel && !sel->tags[tsel]) {
		if((sel = next(clients))) {
			craise(sel);
			focus(sel);
		}
	}
	discard_events(EnterWindowMask);
}

void
tiling(Arg *arg)
{
	Client *c;
	int n, i, w, h;

	w = sw - mw;
	arrange = tiling;
	for(n = 0, c = clients; c; c = c->next)
		if(c->tags[tsel])
			n++;

	h = (n > 2) ? sh / (n - 2) : sh;

	for(i = 0, c = clients; c; c = c->next) {
		if(c->tags[tsel]) {
			if(n == 1) {
				c->x = sx;
				c->y = sy;
				c->w = sw;
				c->h = sh;
			}
			else if(i == 1) {
				c->x = sx;
				c->y = sy;
				c->w = mw;
				c->h = sh;
			}
			else {
				c->x = sx + mw;
				c->y = sy + (i - 2) * h;
				c->w = w;
				c->h = h;
			}
			resize(c);
			i++;
		}
		else
			ban_client(c);
	}
	if(sel && !sel->tags[tsel]) {
		if((sel = next(clients))) {
			craise(sel);
			focus(sel);
		}
	}
	discard_events(EnterWindowMask);
}

void
prevc(Arg *arg)
{
	Client *c;

	if(!sel)
		return;

	if((c = sel->revert && sel->revert->tags[tsel] ? sel->revert : NULL)) {
		craise(c);
		focus(c);
	}
}

void
nextc(Arg *arg)
{
	Client *c;
   
	if(!sel)
		return;

	if(!(c = next(sel->next)))
		c = next(clients);
	if(c) {
		craise(c);
		c->revert = sel;
		focus(c);
	}
}

void
ckill(Arg *arg)
{
	if(!sel)
		return;
	if(sel->proto & WM_PROTOCOL_DELWIN)
		send_message(sel->win, wm_atom[WMProtocols], wm_atom[WMDelete]);
	else
		XKillClient(dpy, sel->win);
}

static void
resize_title(Client *c)
{
	int i;

	c->tw = 0;
	for(i = 0; i < TLast; i++)
		if(c->tags[i])
			c->tw += textw(c->tags[i]) + dc.font.height;
	c->tw += textw(c->name) + dc.font.height;
	if(c->tw > c->w)
		c->tw = c->w + 2;
	c->tx = c->x + c->w - c->tw + 2;
	c->ty = c->y;
	XMoveResizeWindow(dpy, c->title, c->tx, c->ty, c->tw, c->th);
}

void
update_name(Client *c)
{
	XTextProperty name;
	int n;
	char **list = NULL;

	name.nitems = 0;
	c->name[0] = 0;
	XGetTextProperty(dpy, c->win, &name, net_atom[NetWMName]);
	if(!name.nitems)
		XGetWMName(dpy, c->win, &name);
	if(!name.nitems)
		return;
	if(name.encoding == XA_STRING)
		strncpy(c->name, (char *)name.value, sizeof(c->name));
	else {
		if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
				&& n > 0 && *list)
		{
			strncpy(c->name, *list, sizeof(c->name));
			XFreeStringList(list);
		}
	}
	XFree(name.value);
	resize_title(c);
}

void
update_size(Client *c)
{
	XSizeHints size;
	long msize;
	if(!XGetWMNormalHints(dpy, c->win, &size, &msize) || !size.flags)
		size.flags = PSize;
	c->flags = size.flags;
	if(c->flags & PBaseSize) {
		c->basew = size.base_width;
		c->baseh = size.base_height;
	}
	else
		c->basew = c->baseh = 0;
	if(c->flags & PResizeInc) {
		c->incw = size.width_inc;
		c->inch = size.height_inc;
	}
	else
		c->incw = c->inch = 0;
	if(c->flags & PMaxSize) {
		c->maxw = size.max_width;
		c->maxh = size.max_height;
	}
	else
		c->maxw = c->maxh = 0;
	if(c->flags & PMinSize) {
		c->minw = size.min_width;
		c->minh = size.min_height;
	}
	else
		c->minw = c->minh = 0;
	if(c->flags & PWinGravity)
		c->grav = size.win_gravity;
	else
		c->grav = NorthWestGravity;
}

void
craise(Client *c)
{
	XRaiseWindow(dpy, c->win);
	XRaiseWindow(dpy, c->title);
}

void
lower(Client *c)
{
	XLowerWindow(dpy, c->title);
	XLowerWindow(dpy, c->win);
}

void
focus(Client *c)
{
	if(sel && sel != c) {
		XSetWindowBorder(dpy, sel->win, dc.bg);
		XMapWindow(dpy, sel->title);
		draw_client(sel);
	}
	sel = c;
	XUnmapWindow(dpy, c->title);
	XSetWindowBorder(dpy, c->win, dc.fg);
	draw_client(c);
	XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
	XFlush(dpy);
	discard_events(EnterWindowMask);
}

static void
init_tags(Client *c)
{
	XClassHint ch;
	static unsigned int len = rule ? sizeof(rule) / sizeof(rule[0]) : 0;
	unsigned int i, j;
	Bool matched = False;

	if(!len) {
		c->tags[tsel] = tags[tsel];
		return;
	}

	if(XGetClassHint(dpy, c->win, &ch)) {
		if(ch.res_class && ch.res_name) {
			fprintf(stderr, "%s:%s\n", ch.res_class, ch.res_name);
			for(i = 0; i < len; i++)
				if(!strncmp(rule[i].class, ch.res_class, sizeof(rule[i].class))
					&& !strncmp(rule[i].instance, ch.res_name, sizeof(rule[i].instance)))
				{
			fprintf(stderr, "->>>%s:%s\n", ch.res_class, ch.res_name);
					for(j = 0; j < TLast; j++)
						c->tags[j] = rule[i].tags[j];
					matched = True;
					break;
				}
		}
		if(ch.res_class)
			XFree(ch.res_class);
		if(ch.res_name)
			XFree(ch.res_name);
	}

	if(!matched)
		c->tags[tsel] = tags[tsel];
}

void
manage(Window w, XWindowAttributes *wa)
{
	Client *c, **l;
	XSetWindowAttributes twa;

	c = emallocz(sizeof(Client));
	c->win = w;
	c->tx = c->x = wa->x;
	c->ty = c->y = wa->y;
	c->tw = c->w = wa->width;
	c->h = wa->height;
	c->th = th;
	c->border = 1;
	c->proto = win_proto(c->win);
	update_size(c);
	XSelectInput(dpy, c->win,
			StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
	XGetTransientForHint(dpy, c->win, &c->trans);
	twa.override_redirect = 1;
	twa.background_pixmap = ParentRelative;
	twa.event_mask = ExposureMask;

	c->title = XCreateWindow(dpy, root, c->tx, c->ty, c->tw, c->th,
			0, DefaultDepth(dpy, screen), CopyFromParent,
			DefaultVisual(dpy, screen),
			CWOverrideRedirect | CWBackPixmap | CWEventMask, &twa);

	update_name(c);
	init_tags(c);

	for(l = &clients; *l; l = &(*l)->next);
	c->next = *l; /* *l == nil */
	*l = c;

	XSetWindowBorderWidth(dpy, c->win, 1);
	XMapRaised(dpy, c->win);
	XMapRaised(dpy, c->title);
	XGrabButton(dpy, Button1, Mod1Mask, c->win, False, ButtonPressMask,
			GrabModeAsync, GrabModeSync, None, None);
	XGrabButton(dpy, Button2, Mod1Mask, c->win, False, ButtonPressMask,
			GrabModeAsync, GrabModeSync, None, None);
	XGrabButton(dpy, Button3, Mod1Mask, c->win, False, ButtonPressMask,
			GrabModeAsync, GrabModeSync, None, None);
	arrange(NULL);
	if(c->tags[tsel])
		focus(c);
	else
		ban_client(c);
}

void
gravitate(Client *c, Bool invert)
{
	int dx = 0, dy = 0;

	switch(c->grav) {
	case StaticGravity:
	case NorthWestGravity:
	case NorthGravity:
	case NorthEastGravity:
		dy = c->border;
		break;
	case EastGravity:
	case CenterGravity:
	case WestGravity:
		dy = -(c->h / 2) + c->border;
		break;
	case SouthEastGravity:
	case SouthGravity:
	case SouthWestGravity:
		dy = -c->h;
		break;
	default:
		break;
	}

	switch (c->grav) {
	case StaticGravity:
	case NorthWestGravity:
	case WestGravity:
	case SouthWestGravity:
		dx = c->border;
		break;
	case NorthGravity:
	case CenterGravity:
	case SouthGravity:
		dx = -(c->w / 2) + c->border;
		break;
	case NorthEastGravity:
	case EastGravity:
	case SouthEastGravity:
		dx = -(c->w + c->border);
		break;
	default:
		break;
	}

	if(invert) {
		dx = -dx;
		dy = -dy;
	}
	c->x += dx;
	c->y += dy;
}


void
resize(Client *c)
{
	XConfigureEvent e;

	if(c->incw)
		c->w -= (c->w - c->basew) % c->incw;
	if(c->inch)
		c->h -= (c->h - c->baseh) % c->inch;
	if(c->minw && c->w < c->minw)
		c->w = c->minw;
	if(c->minh && c->h < c->minh)
		c->h = c->minh;
	if(c->maxw && c->w > c->maxw)
		c->w = c->maxw;
	if(c->maxh && c->h > c->maxh)
		c->h = c->maxh;
	resize_title(c);
	XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
	e.type = ConfigureNotify;
	e.event = c->win;
	e.window = c->win;
	e.x = c->x;
	e.y = c->y;
	e.width = c->w;
	e.height = c->h;
	e.border_width = c->border;
	e.above = None;
	e.override_redirect = False;
	XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&e);
	XFlush(dpy);
}

static int
dummy_error_handler(Display *dsply, XErrorEvent *err)
{
	return 0;
}

void
unmanage(Client *c)
{
	Client **l;

	XGrabServer(dpy);
	XSetErrorHandler(dummy_error_handler);

	XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
	XDestroyWindow(dpy, c->title);

	for(l = &clients; *l && *l != c; l = &(*l)->next);
	*l = c->next;
	for(l = &clients; *l; l = &(*l)->next)
		if((*l)->revert == c)
			(*l)->revert = NULL;
	if(sel == c)
		sel = sel->revert ? sel->revert : clients;

	free(c);

	XFlush(dpy);
	XSetErrorHandler(error_handler);
	XUngrabServer(dpy);
	arrange(NULL);
	if(sel)
		focus(sel);
}

Client *
gettitle(Window w)
{
	Client *c;
	for(c = clients; c; c = c->next)
		if(c->title == w)
			return c;
	return NULL;
}

Client *
getclient(Window w)
{
	Client *c;
	for(c = clients; c; c = c->next)
		if(c->win == w)
			return c;
	return NULL;
}

void
draw_client(Client *c)
{
	int i;
	if(c == sel)
		return;

	dc.x = dc.y = 0;
	dc.h = c->th;

	dc.w = 0;
	for(i = 0; i < TLast; i++) {
		if(c->tags[i]) {
			dc.x += dc.w;
			dc.w = textw(c->tags[i]) + dc.font.height;
			draw(True, c->tags[i]);
		}
	}
	dc.x += dc.w;
	dc.w = textw(c->name) + dc.font.height;
	draw(True, c->name);
	XCopyArea(dpy, dc.drawable, c->title, dc.gc,
			0, 0, c->tw, c->th, 0, 0);
	XFlush(dpy);
}