diff options
author | okan | 2011-09-03 09:20:58 +0000 |
---|---|---|
committer | okan | 2011-09-03 09:20:58 +0000 |
commit | 396ab2c5818d5fb12d474bbb4caa43c1f3be7fc5 (patch) | |
tree | 63f9d24a3df9b6cadacfe8149ef56013c0f04914 /calmwm.h | |
parent | d9975e05e840a450623ca41602c3636810d8b1ff (diff) | |
download | cwm-396ab2c5818d5fb12d474bbb4caa43c1f3be7fc5.tar.gz |
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 | 7 |
1 files changed, 4 insertions, 3 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. * - * $OpenBSD: calmwm.h,v 1.136 2011/09/03 09:17:16 okan Exp $ + * $OpenBSD: calmwm.h,v 1.137 2011/09/03 09:20:58 okan Exp $ */ #ifndef _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) |