Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-07 | spacing | Okan Demirmen | |
2012-11-07 | tab completion support for menus; from Alexander Polakov. | Okan Demirmen | |
ok sthen@ on an older incarnation | |||
2012-11-01 | try to clarify xprop(1) output, with respect to WM_CLASS, without going | Okan Demirmen | |
overboard; suggested idea by jmc | |||
2012-10-31 | no longer a reason to carry conf_path in struct conf, so dice. | Okan Demirmen | |
2012-10-31 | replace 'reload' with 'restart', which merely re-exec's cwm using the | Okan Demirmen | |
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 | |||
2012-10-29 | on reload, run each client through conf_client to pick up potential | Okan Demirmen | |
ignore and bwidth changes; also add a hack for existing maximized windows so they don't inherit a new bwidth. based on a diff from, and discussion with, Tiago Cunha. | |||
2012-10-28 | clarify autogroup option; based on diffs from kspillner@acm.org with | Okan Demirmen | |
feedback from jmc | |||
2012-10-23 | comment what this whole bit does, not just part of it. | Okan Demirmen | |
2012-10-23 | add a height to struct menu and use it in the most obvious of places. | Okan Demirmen | |
2012-10-23 | treat menu width the same as the height is treated when deciding its | Okan Demirmen | |
max size and location; partially from a diff from Alexander Polakov. | |||
2012-10-23 | Stop drawing when menu doesn't fit inside the screen; picked from a | Okan Demirmen | |
larger diff from Alexander Polakov. | |||
2012-10-07 | Force MIT-MAGIC-COOKIE auth for all displays, like we do for :0 | Matthieu Herrb | |
since OpenBSD 2.4. There is something broken with XDM-AUTHORIZATION-1 and xcb (and also with IPv6) this is hurting when xdm is used on :1 | |||
2012-09-30 | remove utterly bogus tests and simplify. | Marc Espie | |
fvwm was only building thanks to an unlikely series of accidents... okay matthieu@ | |||
2012-09-12 | revert previous for now until a way to test more than a few encodings is found | Okan Demirmen | |
2012-09-10 | remove scrotwm from fvwm restart menu. | Okan Demirmen | |
ok matthieu@ | |||
2012-09-10 | be explicit in which key masks we allow during keypress and buttonpress | Okan Demirmen | |
events; from Alexander Polakov - makes non-us layout reliable. | |||
2012-09-09 | replace with xu_getprop wrapper used everywhere else. | Okan Demirmen | |
2012-09-09 | extend client_resize so that it can know when to reset max flags and | Okan Demirmen | |
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. | |||
2012-08-14 | Typo in warn() argument. Reported by Artturi Alm. Thanks. | Matthieu Herrb | |
2012-08-07 | support multibyte input to menu code; from Alexander Polakov with a tiny tweak. | Okan Demirmen | |
2012-08-05 | Typo. From Pappe Kaugummi via jmc@. | Matthieu Herrb | |
2012-08-05 | Indent with tabs like the rest of the script. | Antoine Jacoutot | |
ok matthieu@ | |||
2012-08-04 | If dbus is installed, start the daemon as part of the X session. | Matthieu Herrb | |
That will help applications that depend on dbus beeing started. With ajacoutot@. | |||
2012-07-22 | puffy 5.2 | Todd T. Fries | |
2012-07-18 | Further simplify Xinerama init and re-init on XRR events. | Okan Demirmen | |
While testing for Xinerama during setup was done display-wide, each time XineramaQueryScreens() is called either in start-up or due to an XRR event, the library re-tests for the Xinerama extension anyway before moving on; so the initial test is redundant and allows another global to go away with one other change: always fill in sc->xinerama (and _no), regardless of the success of malloc in XineramaQueryScreens(), and use it to see if Xinerama dimensions exist when asked by client and/or menu code. | |||
2012-07-16 | unify various max routines to match client placement and partially menu ones | Okan Demirmen | |
when calculating screen dimensions. | |||
2012-07-16 | check value | Okan Demirmen | |
2012-07-16 | move the HasXinerama check into screen_find_xinerama and simplify logic; | Okan Demirmen | |
moves closer to logic in menu code. | |||
2012-07-13 | re-use geom struct in client_ctx (saved)geometry. | Okan Demirmen | |
2012-07-13 | convert xmax/ymax uses to view geometry. | Okan Demirmen | |
2012-07-13 | introduce screen "view" area and "work" area (gap applied) to simplify | Okan Demirmen | |
various blocks that require understanding the screen geometry. | |||
2012-07-08 | fix atom for setting WM_STATE. | Okan Demirmen | |
2012-07-08 | fix atom for retrieving WM_STATE between re-exec's. | Okan Demirmen | |
2012-07-08 | remove a redundant assignment and another one up. | Okan Demirmen | |
2012-07-06 | querying for Xinerama should be done per display, not per screen, so | Okan Demirmen | |
move chuck to display init; allows some shuffling to occur limiting screen_init_xinerama()'s scope while keeping order intact. | |||
2012-07-06 | Add a couple examples of keybindings using keysyms, as discussed | David Coppa | |
with okan@ and sthen@. OK okan@, sthen@ | |||
2012-07-05 | the display's width and height are updated after an XRandR event so we | Okan Demirmen | |
don't need to pass down the new values to screen_update_geometry(); so just read the width/height values directly for both uses of screen_update_geometry(). prep for further changes in this area. | |||
2012-07-04 | assign and use screen ctx where appropriate and consistently. | Okan Demirmen | |
2012-07-04 | use the screen ctx since we already have it assigned. | Okan Demirmen | |
2012-07-04 | fix missing atom (WM_PROTOCOLS) wrt new style handing; without this, the | Okan Demirmen | |
window manager didn't know if a client supported CLIENT_PROTO_DELETE and thus used a hammer, XKillClient. behaviour reported by Tim van der Molen. | |||
2012-07-03 | re-implement atom handing; makes for a normalized and more consistent | Okan Demirmen | |
separation between cwm and ewmh. seen by a few. | |||
2012-06-11 | Update to xinput 1.6.0 | Matthieu Herrb | |
2012-06-07 | Update to xterm 279. Tested by krw@, mpi@, shadchin@. | Matthieu Herrb | |
2012-05-16 | get rid of more stray lines/spaces | Okan Demirmen | |
2012-05-16 | instead of using the menu window for _NET_SUPPORTING_WM_CHECK, create a | Okan Demirmen | |
dummy one to use instead; allows us to not have to wait for menu_init(), so re-shuffle _NET_SUPPORTED slightly. ok sthen@ | |||
2012-05-16 | fix comment | Okan Demirmen | |
2012-05-16 | cycle through other common cycling modifiers; based on a diff from | Okan Demirmen | |
Alexander Polakov. ok sthen@ | |||
2012-05-16 | convert from deprecated XKeycodeToKeysym to XkbKeycodeToKeysym | Okan Demirmen | |
ok sthen@ | |||
2012-05-15 | Update to xkbcomp 1.2.4 | Matthieu Herrb | |
2012-05-15 | Update to xmodmap 1.0.7 | Matthieu Herrb | |