portable version of OpenBSD's cwm(1) window manager
Go to file
oga e7f0d63413 instead of checking for flags in the client context, then removing them.
e.g.:

if (flags & flags_we_care_about)
	flags &= ~(flags_we_care_about);

just whack the flags unconditionally, it's simpler.

okan@ agrees.
2009-08-24 17:04:39 +00:00
calmwm.c static local functions and data; almost identical diff from Thomas Pfaff 2009-06-26 12:21:58 +00:00
calmwm.h static local functions and data; almost identical diff from Thomas Pfaff 2009-06-26 12:21:58 +00:00
client.c instead of checking for flags in the client context, then removing them. 2009-08-24 17:04:39 +00:00
conf.c static local functions and data; almost identical diff from Thomas Pfaff 2009-06-26 12:21:58 +00:00
cwm.1 `exec'' and `ssh'' are lowercase. 2009-06-19 10:43:49 +00:00
cwmrc.5 remove unnecessary Ar macros 2009-08-08 17:27:51 +00:00
font.c a long time coming - re-work the way we deal with colors: since we're 2009-05-17 23:40:57 +00:00
group.c compact a bit by condensing a few if-else's; from Thomas Pfaff 2009-06-20 00:55:41 +00:00
headers.h we include sys/param.h, so remove sys/types.h; sort while here. 2009-04-12 23:51:10 +00:00
input.c compact a bit by condensing a few if-else's; from Thomas Pfaff 2009-06-20 00:55:41 +00:00
kbfunc.c compact a bit by condensing a few if-else's; from Thomas Pfaff 2009-06-20 00:55:41 +00:00
LICENSE
Makefile library dependency ordering matters for static archs, -lXext last in this case 2009-01-19 20:23:19 +00:00
menu.c static local functions and data; almost identical diff from Thomas Pfaff 2009-06-26 12:21:58 +00:00
mousefunc.c compact a bit by condensing a few if-else's; from Thomas Pfaff 2009-06-20 00:55:41 +00:00
parse.y unroll XCALLOC/XMALLOC macros; since we use xcalloc/xmalloc all over the 2009-06-20 00:22:39 +00:00
README
screen.c static local functions and data; almost identical diff from Thomas Pfaff 2009-06-26 12:21:58 +00:00
search.c use fnmatch to glob the entries in the exec menu. 2009-06-26 12:45:12 +00:00
TODO
util.c
xevents.c Rip out the event layer and just use a static array of callbacks like 2009-05-18 00:14:19 +00:00
xmalloc.c
xutil.c static local functions and data; almost identical diff from Thomas Pfaff 2009-06-26 12:21:58 +00:00

--------------------------------------------------------------------------------
cwm release three
--------------------------------------------------------------------------------
   by Marius Aamodt Eriksen <marius@monkey.org>
   contributions by Andy Adamson <dros@monkey.org>,
                    Niels Provos <provos@monkey.org>,
                    Martin Murray <mmurray@monkey.org>,
                    Dimitris Economou <dimeco@stanford.edu> &
                    Antti Nykänen <aon@iki.fi>.

   http://monkey.org/~marius/cwm

DESCRIPTION

   cwm is a window manager initially inspired by evilwm[1].  It
   developed out of modifications to evilwm, but eventually the code
   base of evilwm did not accomodate well for the new features added.
   So calmwm was written from scratch.

   Its main goal is to be as efficient as possible, while providing
   a very clean, simple & attractive aesthetic.

   cwm has several novel features, including the ability to search
   for windows.

HIGHLIGHTS IN RELEASE TWO

   * Improved alt-tabbing, including the ability to reverse cycle.
   * Display of a context menu when alt-tabbing, showing the previous,
     current and next window in the cycle order.
   * Much improved ranking in search.
   * In search-menus, the ability to list every item.

HIGHLIGHTS IN RELEASE THREE

   * More search ranking improvements
   * Many contributions by Antti Nykänen: keyboard binding "i18n",
     show window labels in minimized window menu, automatic window
     grouping, MWM hints support & some bug fixes.
   * Xft support & the addition of the -f flag (see manpage).

INSTALL

   ./configure
   make
   su
   make install

DOCUMENTATION

   See the manpage cwm(1).

LICENSE

   cwm is distributed under a BSD like license. Please see the LICENSE
   file or the top of any source file for more information.

[1] http://evilwm.sourceforge.net/