diff options
author | okan <okan> | 2011-09-03 09:20:58 +0000 |
---|---|---|
committer | okan <okan> | 2011-09-03 09:20:58 +0000 |
commit | 142a36a0c0448ef9c9f7eb36068d45dce09839a9 (patch) | |
tree | 9fd05aefefc79b1df19f0dd3acd5b34d88741d73 /calmwm.h | |
parent | b51f8e6a990c3462464b3830e51b54605e2ade6a (diff) | |
download | cwm-142a36a0c0448ef9c9f7eb36068d45dce09839a9.tar.gz cwm-142a36a0c0448ef9c9f7eb36068d45dce09839a9.tar.xz cwm-142a36a0c0448ef9c9f7eb36068d45dce09839a9.zip |
Add {r,}cycleingroup to cycle through clients belonging to the same
group as the active client (as opposed to all unhidden clients); from Alexander Polakov, with a tiny tweak requested by oga. ok oga@
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calmwm.h b/calmwm.h index 631aaff..cbf58a2 100644 --- a/calmwm.h +++ b/calmwm.h @@ -68,8 +68,9 @@ #define CWM_EXEC_WM 0x0002 /* cycle */ -#define CWM_CYCLE 0 -#define CWM_RCYCLE 1 +#define CWM_CYCLE 0x0001 +#define CWM_RCYCLE 0x0002 +#define CWM_INGROUP 0x0004 #define KBTOGROUP(X) ((X) - 1) |