Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2015-07-12 | introduce 'groupsearch' for group menu search; matches on either group | okan | -1/+26 | |
number/shortcut and/or name. | ||||
2015-07-03 | revert previous; seems search_match_text() needs mi->text pre-populated. | okan | -2/+2 | |
(only used in one place, application menu searching); re-visit later. broken application menu searching reported by Peter Kane. | ||||
2015-06-30 | no longer need to pass down format strings after introducing search_print_cmd | okan | -2/+2 | |
2015-06-30 | Introduce a callback for cmd menu printing, special-casing 'lock' and | okan | -2/+2 | |
'term'. | ||||
2015-06-29 | Shuffle code in kbfunc_ssh so that a missing known_hosts file still | okan | -8/+7 | |
allows a (now blank) menu to appear, as opposed to nothing at all. Behavior reported by Alex Greif. | ||||
2015-06-26 | Mechanical change from xinerama to region backed areas. | okan | -5/+5 | |
2015-06-08 | just populating the ctx is enough since the menu uses a callback and ignores ↵ | okan | -2/+2 | |
anything else | ||||
2015-05-21 | merge kbd and mouse grouptoggle | okan | -4/+6 | |
2015-01-19 | Switch to limits.h; replace MAXPATHLEN and MAXHOSTNAMELEN with PATH_MAX | okan | -5/+6 | |
and HOST_NAME_MAX+1, respectively. ok doug@ | ||||
2014-09-27 | these have nothing to do with 'sticky', but rather group membership; rename. | okan | -2/+2 | |
2014-09-17 | these client actions are just toggles; less confusing with better names | okan | -13/+13 | |
2014-09-17 | ewmh states _NET_WM_STATE_STICKY should not alter position | okan | -2/+2 | |
2014-09-11 | Remove incorrect cast in kbfunc_exec. In kbfunc_ssh, reverse logic on | okan | -5/+5 | |
truncation check so it's obvious. | ||||
2014-09-08 | Remove duplicate client queue (mruq); instead, remove and take the | okan | -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). | ||||
2014-09-06 | Few style nits; extend 'path' to MAXPATHLEN. | okan | -11/+14 | |
2014-09-06 | Move termpath and lockpath into cmdq; side effect is that 'lock' and | okan | -4/+17 | |
'term' now show up in the application menu. | ||||
2014-09-01 | add explicit paran and drop some empty lines bringing like functions closer | okan | -2/+1 | |
2014-08-25 | Implement _NET_WM_STATE_STICKY, bound to CM-s by default; allows any | okan | -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. | ||||
2014-01-30 | Move cwm_status around to avoid header fu, and remove extraneous signal | okan | -1/+3 | |
header from xevents.c; noticed by Christian Neukirchen. | ||||
2014-01-29 | Minimize trivial differences between a few kb and mb functions. | okan | -2/+2 | |
2014-01-23 | If no title is supplied, term uses only the basename for its title. | okan | -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@ | ||||
2014-01-22 | zap whitespace | okan | -26/+26 | |
2014-01-22 | Somewhat streamline event loop/restart/quit handling; most notable | okan | -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. | ||||
2014-01-21 | Sprinkle a few more const; from Tiago Cunha. | okan | -2/+3 | |
2014-01-20 | Save the ptr position before lowering via kbd, so as to be able to cycle | okan | -1/+2 | |
back with the pointer in the right place; matches behaviour when lowering via the mouse function. | ||||
2014-01-20 | constify and rename some confusing variables around cmdq. | okan | -3/+3 | |
2014-01-20 | Add a function that adds an entry to a menuq, normalizing a common code | okan | -24/+8 | |
path; from Tiago Cunha. | ||||
2014-01-03 | use consistent types | okan | -2/+2 | |
2013-12-16 | Implement support for EWMH's _NET_WM_STATE_FULLSCREEN hint. | okan | -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@ | ||||
2013-12-13 | Teach screen_find_xinerama() to apply gap only when told to do so; | okan | -2/+2 | |
adjust callers. Needed for an upcoming feature. | ||||
2013-12-13 | Instead of using work area, use the Xinerama area for snap calculations; | okan | -3/+7 | |
based on a patch from Thomas Adam with appropriate adjustments for gap. | ||||
2013-12-12 | Make sure we really take work area gap into account with snap calculations; | okan | -3/+3 | |
from Dominik Honnef via Christian Neukirchen. | ||||
2013-11-27 | like gap, make snapdist per screen | okan | -3/+3 | |
2013-10-17 | a few err->errx since we don't have error messages here; from Tiago Cunha | okan | -3/+3 | |
2013-07-08 | move kbfunc and mousefunc closer together | okan | -2/+2 | |
2013-05-11 | swap x/y calculations in kbd move/resize to match those in the respective ↵ | okan | -10/+9 | |
mouse functions | ||||
2013-04-08 | consistency | okan | -1/+2 | |
2013-01-08 | add per-group vert/horiz tiling support; introduces 2 new bind commands, | okan | -1/+14 | |
'vtile' and 'htile'; from Alexander Polakov. | ||||
2013-01-04 | rename {h,v}max functions for consistency; from Jan Stary | okan | -3/+3 | |
2013-01-02 | pass the screen workarea, as opposed to viewarea, allowing client | okan | -3/+3 | |
snapping to honor gap. | ||||
2013-01-02 | re-work client_snapcalc() so it takes client and edge dimensions with | okan | -5/+5 | |
snapdist; allows for simplier snap calculations. required for an upcoming diff for honoring gap. | ||||
2013-01-01 | make num of groups no longer off-by-one; from Alexander Polakov | okan | -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. | ||||
2012-12-17 | put a default known_hosts into conf | okan | -8/+5 | |
2012-12-17 | pull user home directory via getenv or getpwuid and stash it so we don't | okan | -6/+3 | |
need to do this everytime; with Tiago Cunha | ||||
2012-12-17 | create and use menuq_clear() helper; from Tiago Cunha | okan | -17/+5 | |
2012-11-09 | sort | okan | -2/+2 | |
2012-11-07 | get rid of the xfree() wrapper around free(); from Tiago Cunha. | okan | -12/+11 | |
2012-11-07 | missing headers; from Thordur Bjornsson. | okan | -1/+2 | |
2012-11-07 | tab completion support for menus; from Alexander Polakov. | okan | -5/+6 | |
ok sthen@ on an older incarnation | ||||
2012-10-31 | replace 'reload' with 'restart', which merely re-exec's cwm using the | okan | -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 |