Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | merge kbd and mouse grouptoggle | okan | 2015-05-21 | -4/+6 |
| | ||||
* | Switch to limits.h; replace MAXPATHLEN and MAXHOSTNAMELEN with PATH_MAX | okan | 2015-01-19 | -5/+6 |
| | | | | | | and HOST_NAME_MAX+1, respectively. ok doug@ | |||
* | these have nothing to do with 'sticky', but rather group membership; rename. | okan | 2014-09-27 | -2/+2 |
| | ||||
* | these client actions are just toggles; less confusing with better names | okan | 2014-09-17 | -13/+13 |
| | ||||
* | ewmh states _NET_WM_STATE_STICKY should not alter position | okan | 2014-09-17 | -2/+2 |
| | ||||
* | Remove incorrect cast in kbfunc_exec. In kbfunc_ssh, reverse logic on | okan | 2014-09-11 | -5/+5 |
| | | | | truncation check so it's obvious. | |||
* | Remove duplicate client queue (mruq); instead, remove and take the | okan | 2014-09-08 | -2/+2 |
| | | | | | | 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). | |||
* | Few style nits; extend 'path' to MAXPATHLEN. | okan | 2014-09-06 | -11/+14 |
| | ||||
* | Move termpath and lockpath into cmdq; side effect is that 'lock' and | okan | 2014-09-06 | -4/+17 |
| | | | | 'term' now show up in the application menu. | |||
* | add explicit paran and drop some empty lines bringing like functions closer | okan | 2014-09-01 | -2/+1 |
| | ||||
* | Implement _NET_WM_STATE_STICKY, bound to CM-s by default; allows any | okan | 2014-08-25 | -1/+7 |
| | | | | | | | client to 'stick' to all desktops (ewmh speak) or groups - this currently has the same affect as setting a client's group to 'nogroup', with the exception that the client can also be in a group, so when un-sticking, the client will go back to its original group/desktop. | |||
* | Move cwm_status around to avoid header fu, and remove extraneous signal | okan | 2014-01-30 | -1/+3 |
| | | | | header from xevents.c; noticed by Christian Neukirchen. | |||
* | Minimize trivial differences between a few kb and mb functions. | okan | 2014-01-29 | -2/+2 |
| | ||||
* | If no title is supplied, term uses only the basename for its title. | okan | 2014-01-23 | -3/+3 |
| | | | | | | | This is useless when searching for windows launched via the ssh command menu; supply a more useful title: '[ssh] <hostname>'. Idea from todd@, ok todd@ | |||
* | zap whitespace | okan | 2014-01-22 | -26/+26 |
| | ||||
* | Somewhat streamline event loop/restart/quit handling; most notable | okan | 2014-01-22 | -13/+3 |
| | | | | | | | | 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. | |||
* | Sprinkle a few more const; from Tiago Cunha. | okan | 2014-01-21 | -2/+3 |
| | ||||
* | Save the ptr position before lowering via kbd, so as to be able to cycle | okan | 2014-01-20 | -1/+2 |
| | | | | | back with the pointer in the right place; matches behaviour when lowering via the mouse function. | |||
* | constify and rename some confusing variables around cmdq. | okan | 2014-01-20 | -3/+3 |
| | ||||
* | Add a function that adds an entry to a menuq, normalizing a common code | okan | 2014-01-20 | -24/+8 |
| | | | | path; from Tiago Cunha. | |||
* | use consistent types | okan | 2014-01-03 | -2/+2 |
| | ||||
* | Implement support for EWMH's _NET_WM_STATE_FULLSCREEN hint. | okan | 2013-12-16 | -1/+7 |
| | | | | | | | | | | | | | | | | Since we already have a form of 'maximize', we need to differentiate between 'maximize' and the new 'fullscreen' mode. The 'maximize' mode will continue to honor gap but now *retains* the border, matching the 'vert/horz maximize' behaviour. The new 'fullscreen' mode supports and follows the _NET_WM_STATE_FULLSCREEN hint, allowing the client perform additional window modifications; in this mode, cwm(1) will *ignore* gap, remove borders and freeze(move/resize) the client. Additionally, 'fullscreen' mode will remember various combinations of previous states. * default keybinding changes: CM-f 'fullscreen', CM-m 'maximize' (re-map as desired). Positive feedback from a few, testing and ok sthen@ | |||
* | Teach screen_find_xinerama() to apply gap only when told to do so; | okan | 2013-12-13 | -2/+2 |
| | | | | adjust callers. Needed for an upcoming feature. | |||
* | Instead of using work area, use the Xinerama area for snap calculations; | okan | 2013-12-13 | -3/+7 |
| | | | | based on a patch from Thomas Adam with appropriate adjustments for gap. | |||
* | Make sure we really take work area gap into account with snap calculations; | okan | 2013-12-12 | -3/+3 |
| | | | | from Dominik Honnef via Christian Neukirchen. | |||
* | like gap, make snapdist per screen | okan | 2013-11-27 | -3/+3 |
| | ||||
* | a few err->errx since we don't have error messages here; from Tiago Cunha | okan | 2013-10-17 | -3/+3 |
| | ||||
* | move kbfunc and mousefunc closer together | okan | 2013-07-08 | -2/+2 |
| | ||||
* | swap x/y calculations in kbd move/resize to match those in the respective ↵ | okan | 2013-05-11 | -10/+9 |
| | | | | mouse functions | |||
* | consistency | okan | 2013-04-08 | -1/+2 |
| | ||||
* | add per-group vert/horiz tiling support; introduces 2 new bind commands, | okan | 2013-01-08 | -1/+14 |
| | | | | 'vtile' and 'htile'; from Alexander Polakov. | |||
* | rename {h,v}max functions for consistency; from Jan Stary | okan | 2013-01-04 | -3/+3 |
| | ||||
* | pass the screen workarea, as opposed to viewarea, allowing client | okan | 2013-01-02 | -3/+3 |
| | | | | snapping to honor gap. | |||
* | re-work client_snapcalc() so it takes client and edge dimensions with | okan | 2013-01-02 | -5/+5 |
| | | | | | | snapdist; allows for simplier snap calculations. required for an upcoming diff for honoring gap. | |||
* | make num of groups no longer off-by-one; from Alexander Polakov | okan | 2013-01-01 | -4/+4 |
| | | | | | | note that a re-exec of cwm will not rewrite the group number atom of *existing* clients, so they will remain off-by-one until each client has its atom updated, or of course a restart of X. | |||
* | put a default known_hosts into conf | okan | 2012-12-17 | -8/+5 |
| | ||||
* | pull user home directory via getenv or getpwuid and stash it so we don't | okan | 2012-12-17 | -6/+3 |
| | | | | need to do this everytime; with Tiago Cunha | |||
* | create and use menuq_clear() helper; from Tiago Cunha | okan | 2012-12-17 | -17/+5 |
| | ||||
* | sort | okan | 2012-11-09 | -2/+2 |
| | ||||
* | get rid of the xfree() wrapper around free(); from Tiago Cunha. | okan | 2012-11-07 | -12/+11 |
| | ||||
* | missing headers; from Thordur Bjornsson. | okan | 2012-11-07 | -1/+2 |
| | ||||
* | tab completion support for menus; from Alexander Polakov. | okan | 2012-11-07 | -5/+6 |
| | | | | ok sthen@ on an older incarnation | |||
* | replace 'reload' with 'restart', which merely re-exec's cwm using the | okan | 2012-10-31 | -3/+5 |
| | | | | | | | 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 | |||
* | extend client_resize so that it can know when to reset max flags and | okan | 2012-09-09 | -2/+2 |
| | | | | | | 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. | |||
* | re-use geom struct in client_ctx (saved)geometry. | okan | 2012-07-13 | -15/+15 |
| | ||||
* | convert xmax/ymax uses to view geometry. | okan | 2012-07-13 | -7/+7 |
| | ||||
* | assign and use screen ctx where appropriate and consistently. | okan | 2012-07-04 | -15/+7 |
| | ||||
* | use the screen ctx since we already have it assigned. | okan | 2012-07-04 | -7/+7 |
| | ||||
* | restore mouse move via the keyboard, noticed by todd@. while the check | okan | 2011-08-29 | -8/+3 |
| | | | | | | | | for cc was wrong due to the fact that cc->sc is always filled in during the event, we don't even need it - just operate on the focused screen's root window regardless. ok todd@ oga@ | |||
* | We are inconsistent when it comes to function returns, so just go all | okan | 2011-07-25 | -9/+10 |
| | | | | | | the way with the cwm specific parts. ok oga@ |