Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2016-09-29 | no need to unmap menu window again | okan | -3/+2 | |
2016-09-29 | Mechanical change: move screen menu bits to their own struct. | okan | -4/+4 | |
2015-11-12 | pledge "stdio rpath proc exec" cwm before main event loop, after | okan | -1/+5 | |
init/setup - mostly for menu building. ok semarie@ (another cwm user) | ||||
2015-11-10 | Start cleaning up name vs function differences; replace magic numbers. | okan | -2/+2 | |
2015-09-16 | On execwm, we should properly release resources before exec'ing into a | okan | -13/+5 | |
new window manager; so allow CWM_EXEC_WM to assign new wm to wm_argv and pass through cwm_status (now EXECWM) so that x_teardown() gets called before exec'ing the new window manager. Removes the need for a separate x_restart() now, using new wm_argv; and consolidates errno for execvp. | ||||
2015-01-19 | Switch to limits.h; replace MAXPATHLEN and MAXHOSTNAMELEN with PATH_MAX | okan | -2/+3 | |
and HOST_NAME_MAX+1, respectively. ok doug@ | ||||
2014-09-08 | Remove duplicate client queue (mruq); instead, remove and take the | okan | -2/+1 | |
global Clientq and place it inside screen_ctx since every client belongs to a screen, then use the same per screen clientq to track stacking order (the sole reason for mruq). | ||||
2014-09-07 | more style nits | okan | -4/+4 | |
2014-09-06 | generic sighandler | okan | -11/+14 | |
2014-02-02 | No need to store screen colormap and visual; rather just use the X | okan | -2/+3 | |
macros in the one place they are needed. | ||||
2014-02-01 | Let the config parser continue parsing even after encountering an error; | okan | -7/+5 | |
original idea (with now-outdated patch) from Thomas Adam. Since we now report where errors exist, this now makes more sense. Expand a bit on config file parsing in the cwm(1). Discussed with a few, including sthen; ok sthen. | ||||
2014-01-28 | Move conf_init/clear into main - no behaviour change; from Tiago Cunha. | okan | -2/+5 | |
2014-01-22 | cwm_argv doesn't need to be global any longer | okan | -6/+6 | |
2014-01-22 | start properly releasing X resources during teardown | okan | -1/+20 | |
2014-01-22 | Somewhat streamline event loop/restart/quit handling; most notable | okan | -2/+15 | |
change allows a restart to trigger proper teardown first, even though teardown is not (yet) complete. After some discussion with oga@nicotinebsd.org regarding a more complicated version/idea. | ||||
2014-01-21 | Sprinkle a few more const; from Tiago Cunha. | okan | -2/+2 | |
2014-01-03 | use consistent types | okan | -2/+2 | |
2013-12-12 | ICCCM explicitly states that server time (CurrentTime) should *not* be | okan | -1/+2 | |
used for focus events, but rather the timestamp of the generated event. Track the last event timestamp and send it down for a WM_TAKE_FOCUS ClientMessage. I suspect we should do this for clients that don't announce this Atom as well, though the raciness gets us into a bind. Solves focus order issue since WM_TAKE_FOCUS; fix verified by sthen@ ok sthen@ | ||||
2013-07-15 | simplify atom handling; allows us to limit to one round-trip to server | okan | -2/+4 | |
for gathering Atoms. | ||||
2013-07-08 | whitespace and style fixes; from Tiago Cunha and one from me. | okan | -4/+2 | |
2013-06-17 | move Cursors into conf. | okan | -12/+2 | |
2013-06-17 | now that we have conf_screen, which configures individual screens | okan | -13/+6 | |
*after* config parsing, we no longer need to split up display/screen initialization, so collapse. | ||||
2013-05-22 | get rid of long standing XXX: now that we configure screens based on | okan | -9/+1 | |
config options, add the keybinding GrabKey calls here | ||||
2013-05-14 | if -> ifdef | okan | -2/+2 | |
2013-04-12 | makes no sense to set an error handler which uses X_Dpy before XOpenDisplay. | okan | -3/+1 | |
2013-04-12 | push Screenq into screen_init | okan | -7/+3 | |
2012-12-18 | simplify config file setup; with Tiago Cunha | okan | -4/+19 | |
2012-12-17 | pull user home directory via getenv or getpwuid and stash it so we don't | okan | -1/+12 | |
need to do this everytime; with Tiago Cunha | ||||
2012-12-17 | non-trivial menu drawing rewrite, moving to Xft and solving various | okan | -6/+1 | |
font/color drawing issues; from Alexander Polakov | ||||
2012-11-29 | zap extra lines | okan | -3/+1 | |
2012-11-29 | x_setupscreen -> screen_init; no functional change. | okan | -58/+2 | |
2012-11-09 | sort | okan | -2/+2 | |
2012-10-31 | replace 'reload' with 'restart', which merely re-exec's cwm using the | okan | -1/+3 | |
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 | ||||
2012-08-07 | support multibyte input to menu code; from Alexander Polakov with a tiny tweak. | okan | -1/+6 | |
2012-07-18 | Further simplify Xinerama init and re-init on XRR events. | okan | -6/+3 | |
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. | ||||
2012-07-06 | querying for Xinerama should be done per display, not per screen, so | okan | -12/+5 | |
move chuck to display init; allows some shuffling to occur limiting screen_init_xinerama()'s scope while keeping order intact. | ||||
2012-07-05 | the display's width and height are updated after an XRandR event so we | okan | -3/+3 | |
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. | ||||
2012-05-16 | instead of using the menu window for _NET_SUPPORTING_WM_CHECK, create a | okan | -3/+4 | |
dummy one to use instead; allows us to not have to wait for menu_init(), so re-shuffle _NET_SUPPORTED slightly. ok sthen@ | ||||
2012-05-13 | knf, some from a diff from Tiago Cunha. | okan | -1/+3 | |
2011-09-08 | allow configurable menu font color; from Alexander Polakov with a tweak | okan | -2/+1 | |
from me. ok oga@ | ||||
2011-07-25 | We are inconsistent when it comes to function returns, so just go all | okan | -4/+5 | |
the way with the cwm specific parts. ok oga@ | ||||
2011-07-23 | Clarify defines and make them not look like non-local ones; started by a | okan | -3/+3 | |
small diff from Thomas Pfaff. ok oga@ | ||||
2011-06-24 | add 'normal' cursor and shuffle the others we use to make a bit more | okan | -11/+12 | |
sense and to be slightly less un-expected. from Alexander Polakov. re-use 'normal' cursor now instead XC_hand1 for menu selection. i really wish X had real docs and made sense. ok on earlier diff with '?' removed (but it's back now) oga@ | ||||
2011-06-24 | replace the non-working check to see if another wm is running with a | okan | -20/+21 | |
method that actually works. checking for icccm compliant wm's should also be done first, but that's another diff (noted by oga). ok oga@ | ||||
2011-05-11 | tag and comment cleanup; ok oga@ | okan | -1/+1 | |
2010-04-12 | grab events on the root window *before* we look for existing windows. | oga | -7/+7 | |
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. | ||||
2010-01-27 | - allow per-screen gap; not (yet) user configurable. | okan | -1/+2 | |
- teach _NET_WORKAREA about gap. ok oga@ | ||||
2009-12-15 | pull all non-X11 headers from calmwm.h and place them only where they | okan | -1/+11 | |
are required. encourged to go all the way by oga@ | ||||
2009-12-15 | pull these headers only into files that need them. | okan | -1/+4 | |
ok oga@ | ||||
2009-12-15 | merge the 2 common header files; specific includes to be pulled out as | okan | -2/+1 | |
separate commits. ok oga@ |