diff options
author | okan | 2008-05-19 12:56:58 +0000 |
---|---|---|
committer | okan | 2008-05-19 12:56:58 +0000 |
commit | 281da1fba3c4cf7c09351c088ec4f5793f9ce96e (patch) | |
tree | d82b052fc3c83570cb7162ef2886af15ddb5e0aa /calmwm.h | |
parent | ca95bca81231c8c082947924b2af0498d914ce96 (diff) | |
download | cwm-281da1fba3c4cf7c09351c088ec4f5793f9ce96e.tar.gz |
finally implement keyboard binding for group toggling
idea for the
"slightly-less-abhorrent-hack-but-a-hack-nonetheless-TM" from oga@
grab and ungrab the keyboard to get around some silly X apps that like
stealing events
ok oga@
Diffstat (limited to '')
-rw-r--r-- | calmwm.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: calmwm.h,v 1.41 2008/05/18 19:43:50 oga Exp $ + * $Id: calmwm.h,v 1.42 2008/05/19 12:56:58 okan Exp $ */ #ifndef _CALMWM_H_ @@ -434,6 +434,7 @@ void kbfunc_client_group(struct client_ctx *, void *); void kbfunc_client_nextgroup(struct client_ctx *, void *); void kbfunc_client_prevgroup(struct client_ctx *, void *); void kbfunc_client_nogroup(struct client_ctx *, void *); +void kbfunc_client_grouptoggle(struct client_ctx *, void *); void kbfunc_client_maximize(struct client_ctx *, void *); void kbfunc_client_vmaximize(struct client_ctx *, void *); void kbfunc_quit_wm(struct client_ctx *, void *); |