diff options
author | Anselm R. Garbe <arg@10kloc.org> | 2006-08-29 09:23:44 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@10kloc.org> | 2006-08-29 09:23:44 +0200 |
commit | 8a6679b3b4999559059df3ae9e08951099511036 (patch) | |
tree | 7b8c4ac2e4647caffba13638cac03c183c7faab2 /dwm.h | |
parent | 7b6d5ff29863e4bc7ba787357133ffb9bc5157e6 (diff) | |
download | dwm-8a6679b3b4999559059df3ae9e08951099511036.tar.gz |
added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Diffstat (limited to 'dwm.h')
-rw-r--r-- | dwm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dwm.h b/dwm.h index 4d23cab..6bb6b3a 100644 --- a/dwm.h +++ b/dwm.h @@ -127,6 +127,8 @@ extern void *erealloc(void *ptr, unsigned int size); extern void spawn(Arg *arg); /* view.c */ +extern void attach(Client *c); +extern void detach(Client *c); extern void dofloat(Arg *arg); extern void dotile(Arg *arg); extern void focusnext(Arg *arg); |