summary refs log tree commit diff
path: root/kbfunc.c
Commit message (Collapse)AuthorAgeFilesLines
* merge kbd and mouse grouptoggleokan2015-05-211-3/+5
|
* Switch to limits.h; replace MAXPATHLEN and MAXHOSTNAMELEN with PATH_MAXokan2015-01-191-4/+5
| | | | | | and HOST_NAME_MAX+1, respectively. ok doug@
* these have nothing to do with 'sticky', but rather group membership; rename.okan2014-09-271-1/+1
|
* these client actions are just toggles; less confusing with better namesokan2014-09-171-12/+12
|
* ewmh states _NET_WM_STATE_STICKY should not alter positionokan2014-09-171-1/+1
|
* Remove incorrect cast in kbfunc_exec. In kbfunc_ssh, reverse logic onokan2014-09-111-4/+4
| | | | truncation check so it's obvious.
* Remove duplicate client queue (mruq); instead, remove and take theokan2014-09-081-1/+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).
* Few style nits; extend 'path' to MAXPATHLEN.okan2014-09-061-10/+13
|
* Move termpath and lockpath into cmdq; side effect is that 'lock' andokan2014-09-061-3/+16
| | | | 'term' now show up in the application menu.
* add explicit paran and drop some empty lines bringing like functions closerokan2014-09-011-1/+0
|
* Implement _NET_WM_STATE_STICKY, bound to CM-s by default; allows anyokan2014-08-251-0/+6
| | | | | | | 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 signalokan2014-01-301-0/+2
| | | | header from xevents.c; noticed by Christian Neukirchen.
* Minimize trivial differences between a few kb and mb functions.okan2014-01-291-1/+1
|
* If no title is supplied, term uses only the basename for its title.okan2014-01-231-2/+2
| | | | | | | 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 whitespaceokan2014-01-221-25/+25
|
* Somewhat streamline event loop/restart/quit handling; most notableokan2014-01-221-12/+2
| | | | | | | | 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.okan2014-01-211-1/+2
|
* Save the ptr position before lowering via kbd, so as to be able to cycleokan2014-01-201-0/+1
| | | | | back with the pointer in the right place; matches behaviour when lowering via the mouse function.
* constify and rename some confusing variables around cmdq.okan2014-01-201-2/+2
|
* Add a function that adds an entry to a menuq, normalizing a common codeokan2014-01-201-23/+7
| | | | path; from Tiago Cunha.
* use consistent typesokan2014-01-031-1/+1
|
* Implement support for EWMH's _NET_WM_STATE_FULLSCREEN hint.okan2013-12-161-0/+6
| | | | | | | | | | | | | | | | 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;okan2013-12-131-1/+1
| | | | adjust callers. Needed for an upcoming feature.
* Instead of using work area, use the Xinerama area for snap calculations;okan2013-12-131-2/+6
| | | | 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;okan2013-12-121-2/+2
| | | | from Dominik Honnef via Christian Neukirchen.
* like gap, make snapdist per screenokan2013-11-271-2/+2
|
* a few err->errx since we don't have error messages here; from Tiago Cunhaokan2013-10-171-2/+2
|
* move kbfunc and mousefunc closer togetherokan2013-07-081-1/+1
|
* swap x/y calculations in kbd move/resize to match those in the respective ↵okan2013-05-111-9/+8
| | | | mouse functions
* consistencyokan2013-04-081-0/+1
|
* add per-group vert/horiz tiling support; introduces 2 new bind commands,okan2013-01-081-0/+13
| | | | 'vtile' and 'htile'; from Alexander Polakov.
* rename {h,v}max functions for consistency; from Jan Staryokan2013-01-041-2/+2
|
* pass the screen workarea, as opposed to viewarea, allowing clientokan2013-01-021-2/+2
| | | | snapping to honor gap.
* re-work client_snapcalc() so it takes client and edge dimensions withokan2013-01-021-4/+4
| | | | | | 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 Polakovokan2013-01-011-3/+3
| | | | | | 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 confokan2012-12-171-7/+4
|
* pull user home directory via getenv or getpwuid and stash it so we don'tokan2012-12-171-5/+2
| | | | need to do this everytime; with Tiago Cunha
* create and use menuq_clear() helper; from Tiago Cunhaokan2012-12-171-16/+4
|
* sortokan2012-11-091-1/+1
|
* get rid of the xfree() wrapper around free(); from Tiago Cunha.okan2012-11-071-11/+10
|
* missing headers; from Thordur Bjornsson.okan2012-11-071-0/+1
|
* tab completion support for menus; from Alexander Polakov.okan2012-11-071-4/+5
| | | | ok sthen@ on an older incarnation
* replace 'reload' with 'restart', which merely re-exec's cwm using theokan2012-10-311-2/+4
| | | | | | | 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 andokan2012-09-091-1/+1
| | | | | | 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.okan2012-07-131-14/+14
|
* convert xmax/ymax uses to view geometry.okan2012-07-131-6/+6
|
* assign and use screen ctx where appropriate and consistently.okan2012-07-041-14/+6
|
* use the screen ctx since we already have it assigned.okan2012-07-041-6/+6
|
* restore mouse move via the keyboard, noticed by todd@. while the checkokan2011-08-291-7/+2
| | | | | | | | 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 allokan2011-07-251-8/+9
| | | | | | the way with the cwm specific parts. ok oga@