Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-08-04 | Remove a debug #error directive that shouldn't have leaked here. | Matthieu Herrb | |
2013-07-22 | puffy 5.4 | Todd T. Fries | |
2013-07-21 | Remove Modules that are not linked to the build for license issues. | Matthieu Herrb | |
2013-07-21 | Update to xfontsel 1.0.5 | Matthieu Herrb | |
2013-07-21 | Update to mkfontscale 1.1.1 | Matthieu Herrb | |
2013-07-21 | Update to xfd 1.1.2x | Matthieu Herrb | |
2013-07-21 | Update to xhost 1.0.6 | Matthieu Herrb | |
2013-07-21 | Update to xrandr 1.4.1 | Matthieu Herrb | |
2013-07-21 | Update to xconsole 1.0.6 | Matthieu Herrb | |
2006-11-26 | Importing from XF4, plus BSD make infrastructure | Matthieu Herrb | |
2013-07-16 | we no longer need to construct an array for _NET_SUPPORTED. | Okan Demirmen | |
2013-07-16 | don't need the size here | Okan Demirmen | |
2013-07-16 | max -> nitems | Okan Demirmen | |
2013-07-15 | shuffle down protoypes | Okan Demirmen | |
2013-07-15 | collapse lines | Okan Demirmen | |
2013-07-15 | simplify atom handling; allows us to limit to one round-trip to server | Okan Demirmen | |
for gathering Atoms. | |||
2013-07-14 | Don't try to use grantpt() on OpenBSD. It causes crashes. | Matthieu Herrb | |
Problem reported by Jan Stary and Marcus Merighi, analysed by guenther@, configure.ac patch by me. | |||
2013-07-10 | bring buttonpress and keypress event handlers slightly closer together | Okan Demirmen | |
2013-07-10 | type fixes | Okan Demirmen | |
2013-07-09 | since the root and event window are the same in the case of a button | Okan Demirmen | |
event on the screen's root window, there's no need to pass down the entire XButtonEvent event, at least to group_menu(), the only callback which takes an argument at this point; instead use the already populated screen. | |||
2013-07-08 | add support for mouse based group {,r}cycle; from Rodrigo Mosconi. not | Okan Demirmen | |
bound by default. | |||
2013-07-08 | move kbfunc and mousefunc closer together | Okan Demirmen | |
2013-07-08 | clarify kbd vs mouse functions | Okan Demirmen | |
2013-07-08 | move duplicate kbd and mouse modifier parsing to a generic function; | Okan Demirmen | |
from Tiago Cunha | |||
2013-07-08 | replace a few (x)malloc with (x)calloc to prevent potential integer | Okan Demirmen | |
overflows; from Tiago Cunha | |||
2013-07-08 | whitespace and style fixes; from Tiago Cunha and one from me. | Okan Demirmen | |
2013-06-26 | Match what's done on i386/amd64 and use vt05 as default for xdm(1) | Martin Pieuchot | |
on macppc now that virtual consoles are supported. Adding "xdm_flags=" to /etc/rc.conf.local should now be enough to get xdm working out of the box, no need to edit /etc/ttys anymore. ok matthieu@ | |||
2013-06-23 | properly fix (and re-organize) selfont selection. | Okan Demirmen | |
2013-06-20 | when selfont is configured, make sure we continue and configure the rest | Okan Demirmen | |
of the screen (quick fix); discovered the hard way by Rodrigo Mosconi. | |||
2013-06-17 | move Cursors into conf. | Okan Demirmen | |
2013-06-17 | now that we have conf_screen, which configures individual screens | Okan Demirmen | |
*after* config parsing, we no longer need to split up display/screen initialization, so collapse. | |||
2013-06-17 | allow mouse button4 and button5; from Rodrigo Mosconi | Okan Demirmen | |
2013-06-10 | move synthetic responses and have client_msg only work with WM_PROTOCOLS, | Okan Demirmen | |
since that's all ClientMessageEvent is for anyway. | |||
2013-06-10 | Check for, and honour, CWStackMode and CWSibling change requests during a | Okan Demirmen | |
ConfigureRequest event. Additionally, honour a border width change; detailed report and patch from Mike Small. | |||
2013-06-03 | Unlike other parse.y variants, cwm's allowed 'command xx /path/to/xx' without | Stuart Henderson | |
quotes. Reinstate this support lost in recent sync diff and add a comment to show that it's intentional. ok okan@ | |||
2013-06-02 | Update to xterm 293. Tested by naddy@ ajacoutot@ | Matthieu Herrb | |
2013-05-31 | Update to xinit 1.3.2 | Matthieu Herrb | |
2013-05-31 | Update to xfs 1.1.3 | Matthieu Herrb | |
2013-05-31 | remove moved file | Matthieu Herrb | |
2013-05-31 | Update to xdpyinfo 1.3.1 | Matthieu Herrb | |
2013-05-31 | Update to bitmap 1.0.7 | Matthieu Herrb | |
2013-05-31 | Update to xwininfo 1.1.3 | Matthieu Herrb | |
2013-05-31 | Update to xrefresh 1.0.5 | Matthieu Herrb | |
2013-05-31 | Update to appres 1.0.4 | Matthieu Herrb | |
2013-05-27 | fix type in a ClientMessage (xu_sendmsg). | Okan Demirmen | |
2013-05-23 | alter conf_grab(_kbd) to first ungrab AnyKey/AnyModifier, then proceed | Okan Demirmen | |
to grab keys in keybindingq. we don't need to ungrab/grab on every addition to the queue, just once with a complete keybindingq; simplify grabbing keys per screen (during init) and during a MappingNotify. while here, change conf_grab_{kbd,mouse} to require only a Window. | |||
2013-05-22 | since we don't have any screens yet, there's no reason to conf_{,un}grab | Okan Demirmen | |
here; just build keybindingq. | |||
2013-05-22 | get rid of long standing XXX: now that we configure screens based on | Okan Demirmen | |
config options, add the keybinding GrabKey calls here | |||
2013-05-22 | move validation of pointer Button into conf_mousebind so we check | Okan Demirmen | |
validity during the parse phase and not bother adding it to the queue, instead of each time a client needs to grab (when it's too late); furthermore, make this a config error, stop parsing and load the default config. | |||
2013-05-22 | sync with src changes | Okan Demirmen | |