aboutsummaryrefslogtreecommitdiffstats
path: root/dwl.c
AgeCommit message (Collapse)AuthorLines
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-26/+16
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-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.
2020-04-26linesaver in pointerfocusDevin J. Pohly-15/+12
2020-04-26fix refocus on sendmonDevin J. Pohly-1/+2
2020-04-26make sure windows always overlap with their monitorDevin J. Pohly-4/+29
2020-04-26track window width/heightDevin J. Pohly-14/+18
2020-04-26use wlr_box for monitor regionsDevin J. Pohly-14/+11
2020-04-26save lines in keyboardfocusDevin J. Pohly-13/+10
2020-04-26don't unfocus when mouse leaves a windowDevin J. Pohly-1/+1
2020-04-25fix multi-dpi scalingDevin J. Pohly-0/+4
2020-04-24clarify keyboardfocus vs pointerfocusDevin J. Pohly-80/+76
2020-04-23draw window bordersDevin J. Pohly-0/+18
Works with scaled/rotated displays too!
2020-04-23factor out scalebox()Devin J. Pohly-4/+15
May switch to the version from sway if that seems like a good idea at some point.
2020-04-23note about cursor initDevin J. Pohly-1/+3
2020-04-23configure monitor rotation/reflectionDevin J. Pohly-0/+2
2020-04-23add chvt functionDevin J. Pohly-0/+10
It truly isn't just a window manager anymore :-|
2020-04-23make space for window bordersDevin J. Pohly-11/+16
2020-04-23change cursor during move and resizeDevin J. Pohly-2/+15
2020-04-23style in buttonpressDevin J. Pohly-18/+17
2020-04-23simplify move/resizemouse functionsDevin J. Pohly-19/+11
2020-04-23funnel all resizing through resize()Devin J. Pohly-1/+1
2020-04-23use exit code macros everywhereDevin J. Pohly-7/+7
2020-04-23some comments and remindersDevin J. Pohly-3/+5
2020-04-23factor out renderclientsDevin J. Pohly-20/+27
This will help once we get to implementing layer-shell
2020-04-23don't autoraiseDevin J. Pohly-6/+25
Still raise in buttonpress and focusstack of course. Focus models honestly wouldn't be too hard to make into a config.h option.
2020-04-23use the focus stack to determine stacking orderDevin J. Pohly-4/+4
Suddenly we have autoraise!
2020-04-23adopt a bit more dwm-like tersenessDevin J. Pohly-82/+63
2020-04-23change focus(NULL, NULL) to mean unfocusDevin J. Pohly-46/+55
"Focus the most recently focused window on selmon" is now refocus()
2020-04-23implement focusmon and tagmonDevin J. Pohly-0/+52
2020-04-23focus follows mouseDevin J. Pohly-20/+24
2020-04-23add incnmaster and setmfact commandsDevin J. Pohly-0/+23
2020-04-23add toggletag and toggleviewDevin J. Pohly-0/+27
2020-04-23don't detect non-visible clients under cursorDevin J. Pohly-0/+3