aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorLines
2020-05-10make sure freed listeners are removed from listDevin J. Pohly-0/+3
2020-05-09remember export-dmabuf for when it's fixed in wlrDevin J. Pohly-0/+1
2020-05-09add output manager protocolDevin J. Pohly-0/+2
2020-05-09add screencopy supportDevin J. Pohly-0/+2
While we're taking low-hanging fruit here...
2020-05-09add primary selection support too!Devin J. Pohly-11/+29
2020-05-09handle request set selectionDevin J. Pohly-1/+18
Ported from wlroots commit fa5d709
2020-05-09use wlr_xdg_surface.set_tiled correctlyDevin J. Pohly-1/+2
Closes #2. I'm guessing from sway that the idea of setting maximized state so that windows cooperate is superseded by using set_tiled.
2020-05-09initialize global listeners staticallyDevin J. Pohly-20/+12
2020-05-03abcDevin J. Pohly-9/+9
2020-05-03remove vestigial listenersDevin J. Pohly-2/+0
2020-05-03no need for a line split hereDevin J. Pohly-2/+1
2020-05-03no conditional needed for output modesDevin J. Pohly-13/+9
If the output backend doesn't support modes, get_preferred_mode will return NULL, and set_mode will accept NULL.
2020-05-03use strstr for monrulesDevin J. Pohly-1/+1
2020-05-03add reminder commentDevin J. Pohly-0/+1
2020-05-03inline xytosurfaceDevin J. Pohly-27/+9
2020-05-03split xytoclient and xytosurfaceDevin J. Pohly-26/+32
2020-05-03styleDevin J. Pohly-2/+1
2020-05-03refocus -> lastfocusedDevin J. Pohly-21/+17
2020-05-03raise client on refocusDevin J. Pohly-2/+2
Might revisit this later, but this currently seems like the right strategy.
2020-05-03add client rulesDevin J. Pohly-7/+54
2020-05-03allow setmon to specify alternate tagsDevin J. Pohly-6/+6
2020-05-03loop over array pointers directlyDevin J. Pohly-22/+20
2020-05-02includes: abcDevin J. Pohly-5/+5
2020-05-02set default cursor over window bordersDevin J. Pohly-3/+3
2020-05-02sacrifice 24 lines to suckless style :)Devin J. Pohly-56/+80
2020-05-02allow passing NULLs to xytoclientDevin J. Pohly-8/+6
For sx/sy, these are handled by the underlying call to wlr_surface_surface_at.
2020-05-02remove outdated/fixed commentDevin J. Pohly-1/+0
2020-05-02style: int instead of boolDevin J. Pohly-11/+10
2020-05-02correct standard include for signal.hDevin J. Pohly-1/+1
Fixes #1. Thanks @sdsddsd1!
2020-04-30include border in xytoclientDevin J. Pohly-24/+16
If there isn't an actual surface under the cursor, *surface will be set to NULL, which is safe now that focus functions handle a NULL surface safely.
2020-04-30allow NULL surface with client in focus functionsDevin J. Pohly-1/+4
2020-04-30make move-grab coords client-relativeDevin J. Pohly-4/+6
2020-04-30unify movemouse/resizemouseDevin J. Pohly-28/+18
2020-04-26fix a long lineDevin J. Pohly-1/+2
2020-04-26wait to get window geometry until map timeDevin J. Pohly-3/+3
2020-04-26use wlr_box for client geometryDevin J. Pohly-35/+33
2020-04-26call arrange only where neededDevin J. Pohly-8/+18
A few of these could probably even be more specific, but this is where dwm's calls are.
2020-04-26funnel isfloating changes through setfloating()Devin J. Pohly-5/+12
2020-04-26move comment where it's more relevantDevin J. Pohly-5/+5
2020-04-26update note about textureDevin J. Pohly-2/+2
2020-04-26mouse move now changes window monitorDevin J. Pohly-0/+3
2020-04-26options to select log levelDevin J. Pohly-2/+12
2020-04-26rename keyboardfocus() to focusclient()Devin J. Pohly-56/+56
2020-04-26integrate raiseclient into keyboardfocusDevin J. Pohly-21/+12
2020-04-26don't pass compositor button events to clientDevin J. Pohly-28/+31
2020-04-26render windows across monitorsDevin J. Pohly-4/+6
2020-04-26abcDevin J. Pohly-22/+22
2020-04-26funnel all monitor-moving through setmon()Devin J. Pohly-21/+18
2020-04-26I'm good with changing the loglevel here...Devin J. Pohly-1/+1
2020-04-26hang some stuff on ->dataDevin J. Pohly-8/+4
Sure it'll be useful at some point. Like here.