aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h (unfollow)
Commit message (Collapse)AuthorLines
2021-04-27Calculate colors using the client's visual and colormapWynn Wolf Arbor-1/+3
As cwm was using the screen's default visual and colormap to draw all client borders, borders for windows that had a depth of 32 bits were not rendered correctly. The same happened with text in the popup menus which were recently changed to be drawn in the context of the client. This commit introduces a Visual reference for each client, and allocates all potential colors for a client's specific visual and colormap in the client_ctx struct. These colors are then used to draw client borders and popup menus. Additionally, since we touch the drawing code anyway, borders are reintroduced to the popup menus for better contrast.
2021-04-27Remove matching on window title historyWynn Wolf Arbor-3/+0
Obscure feature. Confusing if you don't know about it, mostly useless if you do. Matching on currently visible window titles is enough.
2021-04-27Remove wm menuWynn Wolf Arbor-5/+0
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-27Remove ssh menuWynn Wolf Arbor-2/+0
There is no point in keeping this functionality. Saving a few key strokes is not worth the added complexity of the window manager parsing the known_hosts file.
2021-04-27Remove path completion in the exec menuWynn Wolf Arbor-2/+0
There are a couple of issues I found with this functionality: 1) To my knowledge, it is undocumented and extremely specific. 2) Since this function would only complete a full path (by wrapping it in quotes before passing it on), it is entirely useless when composing a command that has more than one argument. 3) The snprintf call has no check for truncation, possibly leading to the path not being quoted properly.
2021-04-27Add BSD compatibility functions and headersWynn Wolf Arbor-0/+20
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
2020-04-18Allow configuring a percentage window size of the master window during ↵okan-1/+3
htile/vtile actions. From Uwe Werler, with a few manpage tweaks.
2020-03-26Instead of using _NET_ACTIVE_WINDOW on restart, use the pointer location to ↵okan-3/+2
determine what client to set active. Reduces a round trip for every window.
2020-03-18Unrelated style fixes, consistency changes and sorting, appropriate ↵okan-43/+36
dosage/removal of wrappers, simplification of name queue, client cycle joins other kb/mb bound functions.
2020-03-18add, then use, xvasprintf, checking for appropriate return.okan-1/+3
2019-03-07Teach client_current() to use a screen to find the current client instead ofokan-2/+2
iterating over all (fallback if no screen provided for now). Initially convert trivial uses of client_current().
2019-03-07gc clientq inside groups, instead use the better maintained one per-screenokan-3/+1
2019-03-07shuffle deck chairs: rename group actions to match intent for clarityokan-4/+4
2019-03-04Separate out the menu window from the client resize/move geom window; in eachokan-9/+8
case, create and destroy on-demand. Isolate more menu specific code.
2019-03-04fix a few misplaced (and misnamed) ewmh root window functionsokan-3/+3
2019-03-01Tie group number and name together during config.okan-2/+3
2019-02-28Selectively hide and show clients based on state; merge client_unhide() andokan-2/+1
client_show().
2019-02-25Add 'group-close-[n]' action to close all windows within specified group.okan-1/+3
heavily based on a diff from Nam Nguyen.
2019-02-22Rename internal functions to delinate between client remove, delete and xprotookan-4/+4
delete; 'window-close' is now the proper action, but 'window-delete' as an alias will remain until more interesting changes require breaking configs.
2018-11-08Use the original client border width to adjust initial placement of clientsokan-1/+2
containing {P,US}Position requests where they are explicitly set to 'ignore' in cwmrc(5); clients are unaware that their border will be altered (removed in this case) when calcuating position and thus end up a factor of their original border width off once mapped by cwm(1). cwm(1) will essentially shift the client to the edge if the original request's position and border match. Window offset noticed by at least Andre Stoebe via bugs@, and others since (and likely before). Thanks!
2018-07-16Remove unused prototype; from Ross L Richardson.okan-2/+1
2018-02-13Store the screen's visual type and colormap.okan-1/+3
2018-02-13Consolidate region 'view' and 'area'.okan-2/+1
2018-02-09limit scope of screen_apply_gap()okan-2/+1
2018-02-09Clean up conf_file/homedir and conf_init() bits.okan-5/+3
2018-02-04Slightly expand and expose verbose debugging.okan-10/+9
2018-02-02Add a simple debug logging mechanism.okan-1/+11
2018-02-02Simplification; use asprintf where appropriate now.okan-5/+5
2018-02-01Use func attributes where appropriate.okan-3/+6
2018-01-23Generate name_to_func[] in a clean and readable fashion.okan-2/+10
2017-12-29Convert menu-exec-wm from an abritrary exec menu, into a config-based menu fromokan-5/+9
which one may configure (wm <name> <path_and_args>) (and choose) specific window managers to replace the running one. 'wm cwm cwm' is included by default. No objections and seems sensible to sthen.
2017-12-29As done for buttonrelease, work specific un-cycling and un-highlighting actionsokan-2/+2
into the keyrelease event, only performing what's actually needed for each; should result in much fewer events against keyreleases. No intended behaviour change. Additionally, like we do for group membership, grab the keyboard only when required for cycling.
2017-12-29Merge group_toggle_membership_leave into the buttonrelease event and only dookan-3/+2
border work for a group/ungroup action.
2017-12-29add helper function client_show to bring together like actions for unhide/raiseokan-1/+2
2017-12-19Add support for _NET_WM_STATE_SKIP_PAGER and _NET_WM_STATE_SKIP_TASKBAR; eerilyokan-2/+11
close to cwm's 'ignore'. Roughly based on an initial diff from Walter Alejandro Iglesias, but with support for both Atoms and without cwm-based bindings.
2017-12-15remove duplicate ExposureMaskokan-3/+3
2017-12-11Unconditionally show prompt on menus, regardless of invocation.okan-3/+3
2017-12-07Original idea from Dimitris Papastamos to move windows to corners a while ago;okan-1/+2
re-proposed by Julien Steinhauser with an updated diff. Apparently this was in the original calmnwm. However, expand the original idea and let clients 'snap' to edges instead, neatly allowing key bindings that snap to adjacent edges (i.e. corners) as well. No default bindings assigned.
2017-12-07give command and group menus their own match callbacksokan-1/+5
2017-12-07stash dir into conf since it'll be of useokan-2/+2
2017-07-14Pull over the remaining re-implemented window move/resize functions and createokan-4/+1
a wrapper so that the key and mouse based move/resize callbacks can be unified. This has already been done with other window operations and menus.
2017-07-12rename one function, matching others, to help upcoming changeokan-2/+2
2017-05-09Alter callbacks to take a struct instead of a growing number of arguments;okan-61/+51
greatly simplifies upcoming work.
2017-05-01Clean up, unify and accurately calculate edge distance with client move/resizeokan-1/+2
actions, so as to not lose windows off the edge. inspired by diffs (and feedback) from Vadim Vygonets.
2017-04-26Switch bwidth type; unfortunately X11 is inconsistent.okan-2/+2
2016-12-06Add search_print_text(), a default callback for mi->print in menu_filter(). ↵okan-1/+2
While here, normalize the remaining search_print_* argument paramters.
2016-12-01Tame the number of 'exec' and 'path' search_match wrappers. No functionalokan-4/+2
change now, though more can likely go later, losing the (paritally complete or incomplete/broken) argument completion bits.
2016-12-01Change 'menu-window' to display all windows; then add 'menu-window-hidden' forokan-1/+3
the previous behaviour of 'menu-window'. 'menu-window' becomes the default binding; use 'bind-mouse "1" menu-window-hidden' to restore old behaviour for those who prefer. OK sthen@ (long long time ago on a different version)
2016-11-15revert previous; upcoming changes will hopefully deal with these moreokan-3/+1
naturally.
2016-11-15Add a wrapper based upon xevent handlers around client move/resize for key andokan-1/+3
mouse bindings.