summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* cvsimport ignorewarpschwarze2010-09-256-25/+26
|\
| * s/-offset -indent/-offset indent/ for correct indentation,schwarze2010-09-251-4/+4
| | | | | | | | | | and properly encode \(:a found by mandoc -Tlint
| * s/\.Pb/.Pp/ for correct vertical spacing; found by mandoc -Tlintschwarze2010-09-251-6/+6
| |
| * do not warp to clients marked 'ignore'; from chneukirchen at gmail - thanks.okan2010-09-251-0/+6
| | | | | | | | | | | | (with the manpage bit from me). ok oga@
| * picked a henning diff from src - original log:okan2010-09-251-2/+3
| | | | | | | | | | | | | | | | fix linecount bug with comments spanning multiple lines problem reported with the obvious fix for bgpd by Sebastian Benoit <benoit-lists at fb12.de>, also PR 6432 ok oga@
| * spacing nitsokan2010-09-252-13/+7
| |
* | cvsimportChristian Neukirchen2010-09-251-3/+3
|\|
| * revert -r1.45 of group.c (log was: fix window name and class to matchokan2010-07-302-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | cwmrc(5)). instead, fix cwmrc(5) to match the old behavior which also happens to match the example config, of which many have based their configs; this also nicely matches the output of xprop(1). clean-up of variable names as a separate commit. suggested by sthen (and something we should have done initially). discussed with and ok oga@
| * fix backwards example (after r1.45 of group.c); noticed by phessler@okan2010-07-231-3/+3
| | | | | | | | ok oga@ phessler@
| * fix window name and class to match cwmrc(5); from Holger Mikolon - thanks!okan2010-06-281-3/+2
| | | | | | | | ok oga@
* | cvsimportokan2010-05-223-4/+37
|\|
| * initialize nitemsokan2010-05-221-1/+1
| | | | | | | | ok oga@
| * replace XFetchName() with something more intelligent which attempts tookan2010-05-223-4/+37
| | | | | | | | | | | | | | | | use the appropriate netwm Atom first, as well as deal with utf8. slightly different incarnation tested by sthen@ and ajacoutot@ - thanks! ok oga@
* | cvsimportoga2010-04-126-21/+19
|\|
| * grab events on the root window *before* we look for existing windows.oga2010-04-121-6/+6
| | | | | | | | | | | | | | This closes a race we were hitting often where stuff started right before cwm may not get noticed and not have borders. ok okan@. Prompted by something todd noticed.
| * clean up a few xu_* functions to just accept what they need (Window).okan2010-04-114-13/+12
| | | | | | | | ok oga@
| * Fix formatting errors breaking the xenocara mandoc(1) build:schwarze2010-03-201-2/+1
| | | | | | | | | | | | | | | | | | | | | | * .Bl may only have .It children * .SH requires an argument * blank lines are illegal outside literal context Now "cd /usr/xenocara && make man" succeeds, but unfortunately, that covers a minority of X11 manuals only. ok matthieu@
* | Add missing functionsChristian Neukirchen2010-02-214-0/+294
| |
* | Import linux.patchChristian Neukirchen2010-02-213-5/+38
|/ | | | | Patch largely based on cwmbuild.sh from http://tamentis.com/hacks/cwm/ written by Bertrand Janin, updated by Christian Neukirchen.
* preserve labels after an edit action is aborted; extending the menuokan2010-02-103-5/+8
| | | | | | | | | struct just for this is the least intrusive approach until the menu code is reviewed. inspired by Thomas Pfaff's report on tech@ ok oga@
* Honour program-specified window position in size hints when placing windows.stsp2010-02-021-1/+1
| | | | | | Makes XMMS windows appear as expected. ok okan, oga
* - allow per-screen gap; not (yet) user configurable.okan2010-01-276-32/+47
| | | | | | - teach _NET_WORKAREA about gap. ok oga@
* pull all non-X11 headers from calmwm.h and place them only where theyokan2009-12-1517-13/+151
| | | | | | are required. encourged to go all the way by oga@
* spacingokan2009-12-151-3/+1
|
* pull these headers only into files that need them.okan2009-12-156-4/+9
| | | | ok oga@
* rid ourselves of these functional macros; convert to real functions.okan2009-12-152-4/+21
| | | | ok oga@
* mostly irrelevant now, so remove.okan2009-12-152-84/+0
| | | | ok oga@
* merge the 2 common header files; specific includes to be pulled out asokan2009-12-1518-69/+28
| | | | | | separate commits. ok oga@
* kill _CWM_GRP atom setting. The netwm stuff does us well enough now thatoga2009-12-143-35/+18
| | | | | | it's superfluous. ok okan@
* add _NET_WORKAREA. for now we ignore the gap, this'll change soonish.oga2009-12-113-2/+17
| | | | ok okan@
* another int/long fixup that was giving dodgy property values on amd64, shame onoga2009-12-111-1/+1
| | | | | | me for not reading xlibs (appauling) documentation more closely. ok okan@
* implement support for _NET_WM_DESKTOP properties on windows.oga2009-12-113-7/+28
| | | | | | | | | | | | it works kinda like _CWM_GRP, which we added to aid restarts a while ago, but it's standardised and clients are specifically allowed to set it to request a desktop. for noe we leave _CWM_GRP support in, but its days are now numbered. while i'm here fixup an int/long mixup with an earlier diff. ok okan@
* Implement _NET_DESKTOP_NAMES, this one was a bit tricky since thespecoga2009-12-116-34/+139
| | | | | | | | | | says that a pager can change the property at any time (most need a clientmessage). So deal with property updates. Needed to shuffle some of the other code around since we can't just use shortcut_to_name[] everywhere now. ok okan@
* Implement _NET_VIRTUAL_ROOTS (just clear it, we don't use that technique)oga2009-12-103-2/+19
| | | | | | | | and _NET_SHOWING_DESKTOP (we're never doing so right now). only three informational root-window hints to go. ok okan@
* Implement _NET_CURRENT_DESKTOP, _NET_DESKTOP_VIEWPORT andoga2009-12-106-22/+45
| | | | | | _NET_DESKTOP_GEOMETRY. ok okan@
* finish unfucking the screen_ctx handling.oga2009-12-109-164/+163
| | | | | | | | | | | | | remove screen_current() it was utterly bogus when nscreens > 1. pass a fake client_ctx in the case where there's no client and the kbfunc or mousefunc doesn't need a real one, it just contains the current screen, modify these functions so that they pass down the screen context to their callees. make groups per screen, it's the only way it makes sense in this regard. ok okan@.
* start fixing screen_ctx usage, for it is utterly broken. bring fontokan2009-12-086-47/+43
| | | | | | | | | into screen_ctx and start passing screen_ctx around to in order get rid of Curscreen; fixup per-screen config colors the same way. diff mostly from oga@, with a bit harsher reaction to the state of screen_ctx. "please commit" oga@
* 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