Compare commits

..

4 Commits

Author SHA1 Message Date
A Frederick Christensen
52c4fb58ec
Revert "Post 0.3 release modification"
This reverts commit 38c7bd7ee89ae41a302a20fb64b6026aaf5e5c6a.
Accidental commit intended for a testing repository.
2026-03-01 19:54:28 -06:00
A Frederick Christensen
38c7bd7ee8
Post 0.3 release modification 2026-03-01 19:53:43 -06:00
A Frederick Christensen
6e1bfa86c7
Remove trailing whitespace from README
Adapted from PR #1188 by @diegoviola
2026-03-01 19:15:22 -06:00
A Frederick Christensen
e32535cf97
Fix typos -- adapted from PR #1189 by @diegoviola 2026-03-01 19:10:43 -06:00
2 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ depend on functionality that is not in the current release of `wlroots`.
The `wlroots-next` branch is built against the git version of [wlroots], which
is unstable and changes frequently. PRs requiring functionality from the git
version of `wlroots` should target this branch.
### Building dwl
dwl has the following dependencies:
- libinput
@ -213,4 +213,4 @@ inspiration, and to the various contributors to the project, including:
[wiki]: https://codeberg.org/dwl/dwl/wiki/Home#compatible-status-bars
[Discord server]: https://discord.gg/jJxZnrGPWN
[Wayland]: https://wayland.freedesktop.org/
[#dwl-official:matrix.org]: https://matrix.to/#/#dwl-official:matrix.org
[#dwl-official:matrix.org]: https://matrix.to/#/#dwl-official:matrix.org

6
dwl.c
View File

@ -587,7 +587,7 @@ arrangelayers(Monitor *m)
arrange(m);
}
/* Arrange non-exlusive surfaces from top->bottom */
/* Arrange non-exclusive surfaces from top->bottom */
for (i = 3; i >= 0; i--)
arrangelayer(m, &m->layers[i], &usable_area, 0);
@ -2135,7 +2135,7 @@ powermgrsetmode(struct wl_listener *listener, void *data)
if (!m)
return;
m->gamma_lut_changed = 1; /* Reapply gamma LUT when re-enabling the ouput */
m->gamma_lut_changed = 1; /* Reapply gamma LUT when re-enabling the output */
wlr_output_state_set_enabled(&state, event->mode);
wlr_output_commit_state(m->wlr_output, &state);
@ -2457,7 +2457,7 @@ setup(void)
wlr_log_init(log_level, NULL);
/* The Wayland display is managed by libwayland. It handles accepting
* clients from the Unix socket, manging Wayland globals, and so on. */
* clients from the Unix socket, managing Wayland globals, and so on. */
dpy = wl_display_create();
event_loop = wl_display_get_event_loop(dpy);