aboutsummaryrefslogtreecommitdiffstats
path: root/dwl.c
AgeCommit message (Collapse)AuthorLines
2020-04-21give types some more dwm-like typedef namesDevin J. Pohly-156/+152
2020-04-21use expressions in sizeof instead of type namesDevin J. Pohly-6/+3
2020-04-21no longer need resize_edges (always bottom right)Devin J. Pohly-38/+6
Also gets rid of the clunky move+resize code
2020-04-21ditch the moverequest/resizerequest xdg stuffDevin J. Pohly-34/+0
dear window, you are not the window manager
2020-04-21No need for struct dwl_serverDevin J. Pohly-146/+135
the only use was to hold global state, which is now actually global
2020-04-21make server a globalDevin J. Pohly-132/+105
dwm isn't afraid of global variables
2020-04-21dwm-style enumDevin J. Pohly-17/+13
2020-04-21alphabetize functionsDevin J. Pohly-454/+488
2020-04-21functions: dwm style and more dwm-like namesDevin J. Pohly-85/+142
2020-04-12add spawn and termcmdDevin J. Pohly-0/+11
2020-04-11treat startup command as long-runningDevin J. Pohly-1/+18
Not quite a perfect mirror of xinit, where the startup command execs the window manager, and the termination of that process brings down the windowing system, but it might be the Wayland analogue.
2020-04-11fix typo in commentDevin J. Pohly-1/+1
2020-04-11implement Button: movemouse, resizemouseDevin J. Pohly-0/+47
2020-04-11add CLEANMASK like dwmDevin J. Pohly-1/+4
2020-04-11make key mappings configurable in config.hDevin J. Pohly-10/+9
2020-04-11start factoring Key actions into functionsDevin J. Pohly-21/+43
2020-04-11Start with tinywlDevin J. Pohly-0/+950
Add a config.h into which configurables can be moved.