summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* add some checksokan2012-11-161-0/+7
|
* variable name consistency; from Thomas Pfaffokan2012-11-141-19/+17
|
* tab-complete buglet fix: once exec_path is completed, allow forokan2012-11-141-2/+0
| | | | subsequent completion; from Alexander Polakov
* sortokan2012-11-0914-16/+16
|
* fix some warnings; inspired by a diff from Thordur Bjornsson.okan2012-11-083-7/+8
|
* style nit; from Tiago Cunha.okan2012-11-071-2/+1
|
* add comment why we mouse unbind, just like kbdokan2012-11-071-0/+1
|
* now that we have FOREACH_SAFE queue macros, use them where appropriate;okan2012-11-071-8/+2
| | | | from Tiago Cunha.
* plug a leak when using 'unmap' for kbd/mouse bindings; from Tiago Cunha.okan2012-11-071-2/+6
|
* get rid of the xfree() wrapper around free(); from Tiago Cunha.okan2012-11-079-45/+36
|
* clarify windowname and windowclass values are pulled from the WM_CLASSokan2012-11-071-2/+2
| | | | property; from Kent Spillner
* zap trailing spaceokan2012-11-071-2/+2
|
* missing headers; from Thordur Bjornsson.okan2012-11-072-0/+2
|
* spacingokan2012-11-071-2/+2
|
* tab completion support for menus; from Alexander Polakov.okan2012-11-074-8/+135
| | | | ok sthen@ on an older incarnation
* try to clarify xprop(1) output, with respect to WM_CLASS, without goingokan2012-11-011-2/+3
| | | | overboard; suggested idea by jmc
* no longer a reason to carry conf_path in struct conf, so dice.okan2012-10-313-9/+6
|
* replace 'reload' with 'restart', which merely re-exec's cwm using theokan2012-10-319-56/+17
| | | | | | | existing argv; same idea with respect to argv saving as Alexander Polakov. reload support was half-complete and is getting in the way. agreed to by many
* on reload, run each client through conf_client to pick up potentialokan2012-10-291-1/+6
| | | | | | | ignore and bwidth changes; also add a hack for existing maximized windows so they don't inherit a new bwidth. based on a diff from, and discussion with, Tiago Cunha.
* clarify autogroup option; based on diffs from kspillner@acm.org withokan2012-10-281-9/+17
| | | | feedback from jmc
* comment what this whole bit does, not just part of it.okan2012-10-231-2/+1
|
* add a height to struct menu and use it in the most obvious of places.okan2012-10-231-8/+10
|
* treat menu width the same as the height is treated when deciding itsokan2012-10-231-3/+5
| | | | max size and location; partially from a diff from Alexander Polakov.
* Stop drawing when menu doesn't fit inside the screen; picked from aokan2012-10-231-1/+6
| | | | larger diff from Alexander Polakov.
* revert previous for now until a way to test more than a few encodings is foundokan2012-09-121-4/+4
|
* be explicit in which key masks we allow during keypress and buttonpressokan2012-09-101-4/+4
| | | | events; from Alexander Polakov - makes non-us layout reliable.
* replace with xu_getprop wrapper used everywhere else.okan2012-09-091-12/+6
|
* extend client_resize so that it can know when to reset max flags andokan2012-09-094-8/+13
| | | | | | bwidth; this allows a client to be resized from a max state, which now gets treated like a non-max'd client. based on a diff that does part of this in a different way from Alexander Polakov.
* support multibyte input to menu code; from Alexander Polakov with a tiny tweak.okan2012-08-072-21/+24
|
* Further simplify Xinerama init and re-init on XRR events.okan2012-07-182-20/+7
| | | | | | | | | | | While testing for Xinerama during setup was done display-wide, each time XineramaQueryScreens() is called either in start-up or due to an XRR event, the library re-tests for the Xinerama extension anyway before moving on; so the initial test is redundant and allows another global to go away with one other change: always fill in sc->xinerama (and _no), regardless of the success of malloc in XineramaQueryScreens(), and use it to see if Xinerama dimensions exist when asked by client and/or menu code.
* unify various max routines to match client placement and partially menu onesokan2012-07-161-4/+13
| | | | when calculating screen dimensions.
* check valueokan2012-07-161-1/+1
|
* move the HasXinerama check into screen_find_xinerama and simplify logic;okan2012-07-162-34/+28
| | | | moves closer to logic in menu code.
* re-use geom struct in client_ctx (saved)geometry.okan2012-07-136-94/+89
|
* convert xmax/ymax uses to view geometry.okan2012-07-138-29/+24
|
* introduce screen "view" area and "work" area (gap applied) to simplifyokan2012-07-132-0/+19
| | | | various blocks that require understanding the screen geometry.
* fix atom for setting WM_STATE.okan2012-07-081-1/+1
|
* fix atom for retrieving WM_STATE between re-exec's.okan2012-07-081-1/+1
|
* remove a redundant assignment and another one up.okan2012-07-081-2/+1
|
* querying for Xinerama should be done per display, not per screen, sookan2012-07-064-13/+12
| | | | | move chuck to display init; allows some shuffling to occur limiting screen_init_xinerama()'s scope while keeping order intact.
* Add a couple examples of keybindings using keysyms, as discusseddcoppa2012-07-061-1/+5
| | | | | | with okan@ and sthen@. OK okan@, sthen@
* the display's width and height are updated after an XRandR event so weokan2012-07-054-7/+7
| | | | | | don't need to pass down the new values to screen_update_geometry(); so just read the width/height values directly for both uses of screen_update_geometry(). prep for further changes in this area.
* assign and use screen ctx where appropriate and consistently.okan2012-07-042-21/+11
|
* use the screen ctx since we already have it assigned.okan2012-07-041-6/+6
|
* fix missing atom (WM_PROTOCOLS) wrt new style handing; without this, theokan2012-07-041-1/+1
| | | | | | | window manager didn't know if a client supported CLIENT_PROTO_DELETE and thus used a hammer, XKillClient. behaviour reported by Tim van der Molen.
* re-implement atom handing; makes for a normalized and more consistentokan2012-07-036-158/+247
| | | | separation between cwm and ewmh. seen by a few.
* get rid of more stray lines/spacesokan2012-05-162-4/+2
|
* instead of using the menu window for _NET_SUPPORTING_WM_CHECK, create aokan2012-05-163-19/+26
| | | | | | | dummy one to use instead; allows us to not have to wait for menu_init(), so re-shuffle _NET_SUPPORTED slightly. ok sthen@
* fix commentokan2012-05-161-2/+3
|
* cycle through other common cycling modifiers; based on a diff fromokan2012-05-163-16/+23
| | | | | | Alexander Polakov. ok sthen@