aboutsummaryrefslogtreecommitdiff
path: root/dwl.c
Commit message (Collapse)AuthorAgeFilesLines
...
| | * updated output format for better expansibility and easier parsingDavid Donahue2021-03-011-4/+5
| | |
| | * Removed unused variable from statusbarDavid Donahue2021-02-081-1/+0
| | |
| | * added statusbar update when tags are updatedDavid Donahue2021-02-071-0/+4
| | |
| | * Added interface to output information about tags, the currently selected ↵David Donahue2021-02-071-0/+36
| | | | | | | | | | | | monitor, and the focused client to a file for use by a status bar
| * | Revert "remove sigchld function"Devin J. Pohly2021-03-131-3/+17
| | | | | | | | | | | | | | | This reverts commit 1fa72b07728ebb396a9f236921b81c369bb12ccb. Fixes #97.
* | | Merge branch 'main' into wlroots-nextDevin J. Pohly2021-03-101-12/+3
|\| |
| * | remove sigchld functionDevin J. Pohly2021-03-101-12/+3
| | | | | | | | | | | | | | | Explicitly setting the handler for SIGCHLD to SIG_IGN tells the OS to reap zombie processes automatically, which is what we wanted anyway.
* | | Revert "Revert "remove EGL parameter from backend_autocreate""Devin J. Pohly2021-02-161-1/+1
| | | | | | | | | | | | This reverts commit 8ed88822ca4448b06c2d7e6155d8022152b78017.
* | | Revert "Revert "fix undeclared WLR_KEY_PRESSED""Devin J. Pohly2021-02-161-1/+1
|/ / | | | | | | This reverts commit a11f2bbc7a4068321767bd7e8c7eee1aee278bc9.
* | Revert "fix undeclared WLR_KEY_PRESSED"Devin J. Pohly2021-02-161-1/+1
| | | | | | | | This reverts commit 67896e9d8b98f679faf4456e26e82057c1884789.
* | Revert "remove EGL parameter from backend_autocreate"Devin J. Pohly2021-02-161-1/+1
| | | | | | | | This reverts commit 0ff13cf216056a36a261f4eed53c6a864989a9fb.
* | fix style on space-indented functionDevin J. Pohly2021-02-141-4/+4
|/
* add some explanation of output reconfigurationDevin J. Pohly2021-01-181-0/+13
| | | | Hopefully this will help "future us" understand what's going on.
* remove hacky code from output-management handlerDevin J. Pohly2021-01-181-11/+3
| | | | | This functionality belongs in updatemons(), where it can hopefully be written a bit more elegantly.
* commit entire output config, or fail and rollbackDevin J. Pohly2021-01-181-5/+8
| | | | | | | | | | | The wlr-output-management protocol requires that either all of the changes from an apply request be applied successfully, in which case a "succeeded" event is sent, or all of the changes are reverted and a "failed" event is sent. As written, this could partially commit changes, then fail. Test the changes first (even for an "apply" event), then commit or rollback as appropriate.
* use updatemons as handler for output_layout.changeDevin J. Pohly2021-01-181-8/+6
| | | | | This should end up firing precisely when we need to adjust our geometry, rather than us guessing about it based on requests.
* unify increment style while we're hereDevin J. Pohly2021-01-181-3/+3
|
* remove unnecessary variableDevin J. Pohly2021-01-181-2/+1
|
* cleanup on aisle createmon()Devin J. Pohly2021-01-181-15/+12
|
* Merge pull request #80 from sam-barr/dwl_upstreamDevin J. Pohly2021-01-141-2/+4
|\ | | | | Fix Initialization of NetWM Atoms
| * Fix Initialization of NetWM Atomssam-barr2021-01-111-2/+4
| | | | | | | | | | | | Additionally, variables xcursor and xcursor_mgr are only used when xwayland is defined, so I make the variables declaration contingent on whether xwayland is being used
* | remove now-unneeded monitor position fieldDevin J. Pohly2021-01-061-12/+1
| |
* | use output layout for dirtomonDevin J. Pohly2021-01-061-14/+12
|/ | | | | No need to track our own order; wlroots has a reasonable default for us already.
* Merge pull request #72 from Stivvo/output-compile-setDevin J. Pohly2021-01-061-14/+7
|\ | | | | Define monitor's x,y at compile time
| * Define monitor's x,y at compile timeStivvo2020-12-301-14/+7
| | | | | | | | | | | | | | | | | | | | Replaces the outputOrder patch. This avoids recalculating positions and allows to arrange monitors in any order, not just from left to right. The order in which monitors are defined in config.h still matters but it's just the order in the list, not the actual position.
* | remove EGL parameter from backend_autocreateDevin J. Pohly2021-01-041-1/+1
|/ | | | Tracking with breaking change in swaywm/wlroots#2593.
* Revert "Allow toggling the layout before selecting a different one"Devin J. Pohly2020-12-281-2/+1
| | | | | This reverts commit 90cc3b1e2c824db74e932dbb9733d398619a037c. Didn't mean to merge this change.
* flesh out cleanupDevin J. Pohly2020-12-271-1/+3
| | | | | | | This is the order of *_destroy calls which resulted in the fewest errors/leaks detected by Valgrind. Most of the errors come from the gbm_allocator code - will have to figure out which destroy call is still missing.
* fix segfault in xwayland cursor managerDevin J. Pohly2020-12-271-8/+6
|
* macroize event handlersDevin J. Pohly2020-12-271-51/+33
| | | | | This was a prime candidate for reducing the verbosity of some of our code
* no need to cast NULL to void *Devin J. Pohly2020-12-251-1/+1
|
* consolidate some of the ugliness into a separate fileDevin J. Pohly2020-12-251-125/+35
| | | | | | | | | | | | | | Similar to Linux kernel approach, encapsulate some of the uglier conditional compilation into inline functions in header files. The goal is to make dwl.c more attractive to people who embrace the suckless philosophy - simple, short, hackable, and easy to understand. We want dwm users to feel comfortable here, not scare them off. Plus, if we do this right, the main dwl.c code should require only minimal changes once XWayland is no longer a necessary evil. According to `cloc`, this also brings dwl.c down below 2000 lines of non-blank, non-comment code.
* fix build with -DXWAYLANDDevin J. Pohly2020-12-241-15/+13
|
* don't call applyexclusive just to returnDevin J. Pohly2020-12-241-44/+42
|
* let's not alienate the dwm folksDevin J. Pohly2020-12-241-115/+127
| | | | Fix style.
* Merge updates from guidocellaDevin J. Pohly2020-12-241-240/+435
|\ | | | | | | | | Thanks so much for helping to keep the project running while life was crazy!
| * update comments and remove debugging printfGuido Cella2020-12-211-9/+3
| |
| * Define monitor order with monrules[]Stivvo2020-12-211-4/+26
| | | | | | | | | | | | | | The order in which monitors are defined in monrules[] actually matters. Monotors that aren't configured in monrules[], it will always be the leftmost.
| * don't reset the cursor imageGuido Cella2020-12-211-1/+1
| | | | | | | | | | | | ...in internal calls to restore pointer focus. Necessary for the unclutter patch, and there's no harm in avoiding this call even in mainline; might prevents issues in same edge cases.
| * say TODOGuido Cella2020-12-201-8/+8
| | | | | | | | just wtf is XXX supposed to be? It sounds like a pornographic thing.
| * rename drwGuido Cella2020-12-201-9/+9
| | | | | | | | | | It's impossible to understand that this stands from drawable if you're not familiar with dwm's code.
| * don't notify of activityGuido Cella2020-12-201-4/+7
| | | | | | | | ...or update selmon when we just want to restore pointer focus.
| * deactivate the focused client on overlay focusGuido Cella2020-12-201-0/+2
| |
| * replace shouldfocusclients with checking oldGuido Cella2020-12-201-27/+24
| | | | | | | | And don't activate clients while an overlay is focused.
| * fix keyboard focus with overlaysGuido Cella2020-12-201-7/+8
| | | | | | | | | | | | | | Don't let internal calls to motionnotify(0) meant to update the pointer focus from maplayersurfacenotify and destroylayersurfacenotify also shift the keyboard focus to the surface under the cursor with sloppyfocus.
| * ensure that xwayland cursor defaults to left_ptrGuido Cella2020-12-201-0/+7
| | | | | | | | | | | | | | Don't show an X cursor when closing an Xwayland window or with certain dropdowns. Based on https://github.com/djpohly/dwl/pull/32
| * enable adaptive syncGuido Cella2020-12-201-0/+1
| | | | | | | | | | The comment in this function's declaration says the backend is free to ignore this setting, so maybe there's no need to make it configurable?
| * use boolGuido Cella2020-12-201-51/+53
| | | | | | | | | | Because it's 2020. Passing integers to wlroots variables and functions with bool in their signature is silly.
| * remove -Werror=declaration-after-statementGuido Cella2020-12-191-162/+150
| | | | | | | | | | | | wtf is the point of this crap? It makes the code harder to follow, increases the line count and made me fail compilation a million times. We shouldn't blindy follow everything about suckless's style.
| * remove goto when the border is 0Guido Cella2020-12-191-3/+0
| | | | | | | | Rendering 0-dimension rectangles no longer crashes wlroots.