aboutsummaryrefslogtreecommitdiff
path: root/swayidle/main.c
AgeCommit message (Collapse)Author
2018-11-25swayidle: fix busy loop on writable FDemersion
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-24swayidle: fix dbus_event not to blockemersion
2018-11-24swayidle: listen when display becomes writableemersion
2018-11-24swaylock: fix display_event to not blockIan Fan
2018-11-24swayidle: when acquiring sleep lock, initialize and free variables properlyIan Fan
2018-11-18Use #if instead of #ifdefemersion
2018-11-05Revert "Work around swayidle never triggering on SIGUSR1"Drew DeVault
2018-11-05Work around swayidle never triggering on SIGUSR1Jarkko Oranen
2018-10-28swayidle: enter idle state on SIGUSR1emersion
2018-10-15Sway clients: Exit gracefully when compositor is unavailableRyan Dwyer
2018-09-30Turn funcs() into funcs(void)Arkadiusz Hiler
If they really do not take undefined number of arguments.
2018-07-16swayidle: cleanupemersion
No idea why wlr_output_layout was involved here.
2018-07-09Update for swaywm/wlroots#1126emersion
2018-06-17swayidle: fix stack overflow on sleepAlex Xu (Hello71)
2018-06-08swayidle: doublefork to not leave zombies aroundDominique Martinet
2018-05-16swayidle: terminate if wl_display_dispatch failedDominique Martinet
2018-05-16swayidle: terminate when server diedDominique Martinet
Fixes #1977.
2018-05-13Actually fix swayidleDrew DeVault
I also didn't test this commit though so who knows
2018-05-13swayidle: use wl_event_loop_dispatch_idleDrew DeVault
Fixes #1977
2018-05-13Idle handling for dpms/lockscreen et alMattias 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