aboutsummaryrefslogtreecommitdiff
path: root/src/socket/parser.rs
AgeCommit message (Collapse)AuthorFilesLines
2016-09-04Add Mouse drag support.Matias Linares1-2/+44
This concludes the first 'release' :p.
2016-06-03Add Clippy as dependency.Matias Linares1-4/+4
This brings a lot of clean up on the code.
2015-12-07Implement desktops.Matias Linares1-1/+3
It's somewhat buggy. But works :). There're 2 desktops only for now, maybe later I will implement something more dynamic
2015-11-30Add resize-win-sticky.Matias Linares1-3/+5
The move window sticky is working weirdly. The movement should be using the attrs.x and attrs.y instead the attrs.x/y + attrs.width/height. But it's working :).
2015-11-29Begin ef EWMH support and sticky movementMatias Linares1-0/+3
The implementationn of the EWMH and ICCCM support is incomplete. I need to check how to implement on the right way.
2015-11-28Better socket handlingMatias Linares1-52/+163
The socket interface now allows almost everything that vould be done by the internals of the window manager. Also the Window manager now closes fine (on a success exit).
2015-11-27Little implemented the socket parser.Matias Linares1-2/+34
Just two functions for the parsing of the socket. nothing special.
2015-11-22Add socket functionality.Matias Linares1-0/+70
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.