Anton Bobrov
Anton Bobrov
I'm working on reversed feature now, export .http format to curl to be able to share requests. Your request is pretty useful too, I definitely will implement curl cli parsing.
> May need to buffer output across calls to .read() and decompress until there's at least n bytes available to be read Does it really need to return at least...
Thanks. You are my hero!
I've commited into master ImmediateWM which allows to play with wm from repl. ``` >>> import orcsome.wm >>> wm = orcsome.wm.ImmediateWM() >>> help(wm) >>> help(orcsome.wm.Window) >>> print [(w.name, w.cls, w.title)...
There is no need in python-xlib in latest master. The only requirement is cffi.
get_wm in repl _always_ returns None. There is event loop so you must use ImmediateWM
> I'm guessing I could use "find_client" to do the initial "find the window belonging to the pid" part ? Yep. You can iter through wm.get_clients and match pid with...
> I will re-apply those same properties (x, y, width, height, z-index and attributes like 'always on top' to the new window ? Usually it's responsibility of a WM to...
> if it's not possible to set z, I might just raise it to the top. There is no a "z-index" notion in XWindow. Clients are organized in stack and...
I did not see any profits with porting to any ioloops. Clients can call sync publish safely because redis is fast and you gain nothing (I did benchamarks). And async...