Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2021-04-27 | Remove wm menu | Wynn Wolf Arbor | -6/+4 | |
Whilst arguably useful for certain people, or in rare cases, this functionality is not needed in the general case. This will also remove a memory leak where fallback was not properly freed. | ||||
2021-04-27 | Add BSD compatibility functions and headers | Wynn Wolf Arbor | -1/+1 | |
Original file locations in the OpenBSD tree: - lib/libc/stdlib/reallocarray.c - lib/libc/stdlib/strtonum.c - lib/libc/string/strlcat.c - lib/libc/string/strlcpy.c - sys/sys/queue.h | ||||
2021-04-27 | Replace INFTIM with -1 | Wynn Wolf Arbor | -1/+1 | |
2021-04-27 | Use pledge(3) only on OpenBSD | Wynn Wolf Arbor | -0/+2 | |
2021-04-27 | Define __dead if missing | Wynn Wolf Arbor | -0/+4 | |
2020-03-26 | zap stray tabs | okan | -2/+2 | |
2020-03-26 | Add support for SIGINT/SIGTERM. | okan | -5/+10 | |
2020-03-18 | Unrelated style fixes, consistency changes and sorting, appropriate ↵ | okan | -5/+6 | |
dosage/removal of wrappers, simplification of name queue, client cycle joins other kb/mb bound functions. | ||||
2019-03-04 | Separate out the menu window from the client resize/move geom window; in each | okan | -3/+1 | |
case, create and destroy on-demand. Isolate more menu specific code. | ||||
2019-02-25 | Add a configtest flag (-n). | okan | -5/+13 | |
based on a diff from Sascha Paunovic. | ||||
2018-02-09 | Clean up conf_file/homedir and conf_init() bits. | okan | -34/+9 | |
2018-02-04 | Slightly expand and expose verbose debugging. | okan | -3/+6 | |
2018-01-02 | Only exec the fallback when in CWM_EXEC_WM state. | okan | -5/+5 | |
Broken quit noticed by Ve Telko. | ||||
2017-12-29 | If the replacement window manager fails to start, restart the fallback (the | okan | -1/+6 | |
original invocation of cwm). | ||||
2017-12-27 | Add support for re-exec'ing with SIGHUP; equivalent to the already built-in | okan | -1/+6 | |
'restart' function. | ||||
2017-12-27 | Use poll and XNextEvent to replace XNextEvent blocking inside the x11 event | okan | -2/+12 | |
handler. | ||||
2017-12-22 | zap stray that snuck in | okan | -2/+2 | |
2017-12-22 | Return the connection number for the display. | okan | -5/+7 | |
2017-12-22 | Fix a few comments and while here, wrap some long lines. | okan | -2/+3 | |
2017-12-07 | stash dir into conf since it'll be of use | okan | -6/+5 | |
2016-10-18 | Refactor callbacks to take a void * so as to not try and generalize into | okan | -16/+13 | |
client_ctx in keypress and buttonpress event handlers; pass appropriate *ctx's based on context. While here, limit some globals, replace defines with appropriate variables and fix some naming. | ||||
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 |