aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
AgeCommit message (Collapse)AuthorFilesLines
2015-11-30Update dependenciesMatias Linares1-8/+3
2015-11-27Little implemented the socket parser.Matias Linares1-0/+6
Just two functions for the parsing of the socket. nothing special.
2015-11-22Cleanup.Matias Linares1-6/+0
Nom it's not needed for now.
2015-11-22Add socket functionality.Matias Linares1-0/+6
Something simple, but it works pretty well. The mapping between the strings that comes from the socket and functions, modifiers, keys, etc. needs some rewrite because now there's a manual mapping. The autostart file shows some functionality on how it will work. Since the next_xevent is ticking on 1s, it's preferible to make the writes on the socket all together, otherwise will pass 1 sec between two calls.
2015-11-19Implemented socket handler.Matias Linares1-0/+15
First steps on the socket handling. Dotwm will use this for communication between different clients trying to modify the behaviour (just take a look into hlwm's herbstclient program). It's needed a parser for the configuration, make the protocol and get it working better. For now I'm checking if it's anything into the socket every time I've a XEvent. But it shouldn't be this way.
2015-11-15Clean of zombie process.Matias Linares1-3/+8
The spawn of process within the exec_cmd function now are handled by a new function (collect_zombies). For reference, this code was taken from the _zombie_ crate.
2015-11-08Initial commitMatias Linares1-0/+27
This initial commit has the following: * We can spawn a terminal. * Given a new window, we can move it around the screen, but only the window that was created, all the other windows disappear on the void, so.. :( and that's it