Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-25 | swayidle: fix busy loop on writable FD | emersion | |
The wl_event_source_fd_update docs say: > File descriptors are usually writable to begin with, so they do not need to > be polled for writable until a write actually fails. When a write fails, > the event mask can be changed to poll for readable and writable, delivering > a dispatch callback when it is possible to write more. Once all data has > been written, the mask can be changed to poll only for readable to avoid > busy-looping on dispatch. So we should only poll for WL_EVENT_WRITABLE if a write fails. I'm not yet sure how to do this properly and Weston doesn't do it, so in the meantime I'll just fix the busy loop. I'll ask them too. Fixes https://github.com/swaywm/sway/issues/3190 | |||
2018-11-24 | swayidle: fix dbus_event not to block | emersion | |
2018-11-24 | swayidle: listen when display becomes writable | emersion | |
2018-11-24 | swaylock: fix display_event to not block | Ian Fan | |
2018-11-24 | swayidle: when acquiring sleep lock, initialize and free variables properly | Ian Fan | |
2018-11-18 | Use #if instead of #ifdef | emersion | |
2018-11-05 | Revert "Work around swayidle never triggering on SIGUSR1" | Drew DeVault | |
2018-11-05 | Work around swayidle never triggering on SIGUSR1 | Jarkko Oranen | |
2018-10-28 | swayidle: enter idle state on SIGUSR1 | emersion | |
2018-10-15 | Sway clients: Exit gracefully when compositor is unavailable | Ryan Dwyer | |
2018-09-30 | Turn funcs() into funcs(void) | Arkadiusz Hiler | |
If they really do not take undefined number of arguments. | |||
2018-07-16 | swayidle: cleanup | emersion | |
No idea why wlr_output_layout was involved here. | |||
2018-07-09 | Update for swaywm/wlroots#1126 | emersion | |
2018-06-17 | swayidle: fix stack overflow on sleep | Alex Xu (Hello71) | |
2018-06-08 | swayidle: doublefork to not leave zombies around | Dominique Martinet | |
2018-05-16 | swayidle: terminate if wl_display_dispatch failed | Dominique Martinet | |
2018-05-16 | swayidle: terminate when server died | Dominique Martinet | |
Fixes #1977. | |||
2018-05-13 | Actually fix swayidle | Drew DeVault | |
I also didn't test this commit though so who knows | |||
2018-05-13 | swayidle: use wl_event_loop_dispatch_idle | Drew DeVault | |
Fixes #1977 | |||
2018-05-13 | Idle handling for dpms/lockscreen et al | Mattias Eriksson | |
Swayidle handles idle events and allows for dpms and lockscreen handling. It also handles systemd sleep events, and can raise a lockscreen on sleep Fixes #541 |