about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Implement _NET_NUMBER_OF_DESKTOPS, currently this is statically 9 andoga2009-12-074-4/+12
| | | | | | | unchangable. the group code needs some cleaning up before this will be a bit less hackish. ok okan@
* support _NET_CLIENT_LIST.oga2009-12-073-1/+26
| | | | | | | | the x property api doesn't let you remove one entry from an X property array, so client_remove is kinda expensive, but there's no real way around that.. ok okan@
* Implement _NET_ACTIVE_WINDOW. for now just the informational hint isoga2009-12-073-3/+22
| | | | | | | supported, the client message to change this will be supported when all informational hints are working. ok okan@
* introduce the beginnings of netwm support, minimally and correctly;okan2009-12-073-1/+44
| | | | | | | | | | allows java to be happy, but additionally stops others from whinning about a non-netwm complaint wm. more to come. written a few times; this one includes a clever hack from oga@ to populate _NET_SUPPORTED. ok oga@
* fix off-by-one where a mere click would select the first item inside a menuokan2009-12-071-1/+1
| | | | | | from Thomas Pfaff ok oga@
* we already have sc from the passed cc, so just used that instead.okan2009-12-071-1/+1
| | | | ok oga@
* be consistentokan2009-12-071-6/+6
| | | | ok oga@
* remove unused externokan2009-12-071-2/+0
| | | | ok oga@
* style (whitespaces)tobias2009-11-285-7/+7
| | | | ok oga, okan
* Corrected grammar in comment.tobias2009-11-221-1/+1
| | | | ok (and better style suggestion by) oga, okan
* With Xinerama enabled, the borders of a maximized window will show up onoga2009-09-251-2/+7
| | | | | | | | | all adjacent screens. This patch hides the borders while the window is maximized. From Bertrand Janin; thanks! ok okan@
* re-introduce the intention of the change from rev 1.4 in menu.c hereokan2009-09-051-2/+6
| | | | | | | instead, by moving the check for '\0' to only the places that it matters. hint and 50% of the diff from oga@, prodded by todd@ ok oga@
* styletobias2009-09-051-2/+2
| | | | ok oga
* unroll the CCTOSC macro; from Thomas Pfaffokan2009-08-274-16/+14
| | | | ok oga@
* static; ok oga@okan2009-08-251-2/+2
|
* we are not doing access control here, so replace the "check if file isokan2009-08-251-34/+5
| | | | | | | | executable" goo with access(2). originally from jacekm@ long time ago. "i can live with that" oga@
* Reduce duplciation of code for checking modifiers in key/mouse bindings.oga2009-08-251-39/+37
| | | | | | shaves a bunch of bytes. ok okan@
* Instead of calling conf_bind*() 50 gazillion times in a row, store anoga2009-08-251-68/+79
| | | | | | | array with all the parameters in and just loop over that to setup the default keybindings - it's so much easier to read. okan@ "love love love"ed this
* Instead of messing around everytime we do a resize, just clamp theoga2009-08-252-6/+7
| | | | | | resize increments to a minimum of one, and use it unconditionally. "you've convinced me, do it!" okan@
* unroll macro; ok oga@okan2009-08-251-3/+3
|
* Add a keybinding to allow horizontal maximisation of a window (CMS-enter).oga2009-08-246-4/+56
| | | | | | based on a diff by Thomas Pfaff; thanks! ok okan@
* bring together gathering, calculating and applying of size hints;okan2009-08-244-34/+100
| | | | | | additionally, respect aspect ratio hints. ok oga@
* Instead of having a function that just calls TAILQ_INIT on a global, useoga2009-08-244-18/+2
| | | | | | TAILQ_HEAD_INITIALIZER() and drop the function. ok okan@
* instead of checking for flags in the client context, then removing them.oga2009-08-241-2/+1
| | | | | | | | | | | e.g.: if (flags & flags_we_care_about) flags &= ~(flags_we_care_about); just whack the flags unconditionally, it's simpler. okan@ agrees.
* remove unnecessary Ar macrosokan2009-08-081-4/+4
| | | | ok jmc@
* remove unnecessary Dq macro; based on a diff from Martin Toftokan2009-08-081-2/+2
| | | | feedback and ok jmc@, martynas@
* use fnmatch to glob the entries in the exec menu.oga2009-06-261-2/+4
| | | | | | | | allows shell globbing constructs such as *ctl, etc in the exec menu (m-? by default). Adapted from a diff from Thomas Pfaff, okan@ got almost the same diff as me when reworking it, and oked this one.
* static local functions and data; almost identical diff from Thomas Pfaffokan2009-06-267-32/+30
| | | | ok oga@
* tidy up startup/init routinesokan2009-06-234-7/+14
| | | | ok oga@
* compact a bit by condensing a few if-else's; from Thomas Pfaffokan2009-06-205-31/+7
| | | | "go on then" oga@
* unroll XCALLOC/XMALLOC macros; since we use xcalloc/xmalloc all over theokan2009-06-209-21/+17
| | | | | | place anyway, this makes things a bit more consistent; from Thomas Pfaff ok oga@
* spacingokan2009-06-202-4/+0
|
* ``exec'' and ``ssh'' are lowercase.sobrado2009-06-191-3/+3
| | | | ok martynas@
* items on the first list should have full stops too.sobrado2009-06-181-7/+7
| | | | ok martynas@
* the on-line manual should use the same notation for key bindingssobrado2009-06-181-37/+49
| | | | | | | | as the configuration file, this way writing configuration files is easier; add a few missing interactive command (.Ic) macros to key bindings; slightly improve spacing in the lists; other tweaks. ok martynas@
* remove unnecessary casts; from Thomas Pfaffokan2009-06-171-2/+2
| | | | ok oga@
* re-factor parts of mouse move/resize bit to shrink and make moreokan2009-06-172-34/+24
| | | | | | readable; no behavior change ok oga@
* move like defines to a central, logical location; no binary change.okan2009-06-173-7/+6
| | | | aok oga@
* 'no' is the answer to the comment question: cc->name can't be NULL atokan2009-05-301-10/+5
| | | | | | this point due to client_setname()'s work; remove this check. ok oga@
* re-order a bit for readability.okan2009-05-301-10/+7
| | | | "if it makes you happy" oga@
* revert the 1.4 change - causes a double free noticed by grange@ a whileokan2009-05-301-1/+1
| | | | | | ago while using kazehakase (or clients that don't set a name). ok oga@
* In movetogroup, check the window's current group and skip client_hide()sthen2009-05-191-1/+2
| | | | | if it's the same as the active group. Was in my original movetogroup diff, but it got simplified a little too far. ok oga@
* nuke the leading underscore notation for local static functions - thereokan2009-05-185-49/+49
| | | | | | are far better ways to know. "go for it" oga@
* oops, we appear to have grown an extra prototype for group_only(), getoga2009-05-181-1/+0
| | | | the secateurs out.
* Rip out the event layer and just use a static array of callbacks likeoga2009-05-183-253/+75
| | | | | | | | | | every other window manager since twm. The event layer is very nice, very shiny, very flexible, and very much underutilised. We don't need any of those shiny features so it's probably better to earn ourselves 1k smaller text size instead. ok todd@, okan@
* redraw all borders at once on reloadokan2009-05-171-0/+4
| | | | "sure" oga@
* a long time coming - re-work the way we deal with colors: since we'reokan2009-05-1710-64/+158
| | | | | | | | using Xft(3), use it to select the font color as well instead of trying to build one; properly allocate and free colors at-will, e.g. we now have configurable colors. feedback and ok's todd@ and oga@
* minor bit of knf, just to be consistent; oga@ doesn't mind that muchokan2009-05-171-3/+2
|
* unbreakokan2009-05-171-0/+1
|
* add a "movetogroup" function, which hides the current window fromsthen2009-05-175-2/+46
| | | | | | | | | | | | display and moves it to another group. useful with the recently added "grouponly" function, giving the ability to use groups as simple virtual desktops (similar to e.g. xmonad, dwm and scrotwm). this doesn't have default keyboard bindings; cwmrc(5) now shows how you could use these functions (use M-1...9 for grouponly1...9 and MS-1...9 for movetogroup1...9 to emulate the default dwm bindings). ok oga@