diff options
author | Anselm R. Garbe <garbeam@gmail.com> | 2007-08-16 17:55:55 +0200 |
---|---|---|
committer | Anselm R. Garbe <garbeam@gmail.com> | 2007-08-16 17:55:55 +0200 |
commit | 10bc0ce912eb99fec49d954c80d92e04429ed0ee (patch) | |
tree | 524951e34fcd67e59b672c4ae203b71f94a214b3 /dwm.h | |
parent | e8792d95a12c85f9e660e192cd2c6260a01a3c5e (diff) | |
download | dwm-10bc0ce912eb99fec49d954c80d92e04429ed0ee.tar.gz |
made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Diffstat (limited to 'dwm.h')
-rw-r--r-- | dwm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dwm.h b/dwm.h index 509b845..0786dab 100644 --- a/dwm.h +++ b/dwm.h @@ -114,7 +114,8 @@ void grabkeys(void); /* grab all keys defined in config.h */ /* layout.c */ void arrange(void); /* arranges all windows depending on the layout in use */ -void focusclient(const char *arg); /* focuses next(1)/previous(-1) visible client */ +void focusnext(const char *arg); /* focuses next visible client */ +void focusprev(const char *arg); /* focuses prev visible client */ const char *getsymbol(void); /* returns symbol of enabled layout */ Bool isfloating(void); /* returns True if floating layout is enabled */ Bool isarrange(void (*func)()); /* returns True if func is the layout function in use */ |