aboutsummaryrefslogtreecommitdiffstats
path: root/swayidle
Commit message (Collapse)AuthorAge
* Split swayidle from swayLibravatar Drew DeVault2019-01-12
|
* swayidle: Fix sleep inhibitor not being acquiredLibravatar Oscar Cowdery Lack2019-01-07
| | | | | | | Fixes #3377. The sleep lock file descriptor was immediately closed after it was acquired due to the dbus message being freed. Now the fd is duplicated before the message is freed so the inhibitor stays active.
* list.c: Remove list_foreachLibravatar Ian Fan2018-12-09
| | | | | Most occurrences have been replaced by `free_flat_list` which has been moved from stringop.c to list.c. The rest have been replaced by for loops.
* swayidle: fix busy loop on writable FDLibravatar emersion2018-11-25
| | | | | | | | | | | | | | | | | 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
* swayidle: fix dbus_event not to blockLibravatar emersion2018-11-24
|
* swayidle: listen when display becomes writableLibravatar emersion2018-11-24
|
* swaylock: fix display_event to not blockLibravatar Ian Fan2018-11-24
|
* swayidle: when acquiring sleep lock, initialize and free variables properlyLibravatar Ian Fan2018-11-24
|
* fix typo in swayidle(1)Libravatar camoz2018-11-21
|
* Use #if instead of #ifdefLibravatar emersion2018-11-18
|
* Revert "Work around swayidle never triggering on SIGUSR1"Libravatar Drew DeVault2018-11-05
|
* Work around swayidle never triggering on SIGUSR1Libravatar Jarkko Oranen2018-11-05
|
* swayidle: enter idle state on SIGUSR1Libravatar emersion2018-10-28
|
* Sway clients: Exit gracefully when compositor is unavailableLibravatar Ryan Dwyer2018-10-15
|
* Add support for installing binaries with DT_RPATHLibravatar Arkadiusz Hiler2018-09-30
| | | | | | | | | | | | | | It's better to use DT_RPATH dynamic section of the elf binary to store the paths of libraries to load instead of overwriting LD_LIBRARY_PATH for the whole environment, causing surprises. This solution is much more transparent and perfectly suitable for running contained installations of wayland/wlroots/sway. The code unsetting the LD_LIBRARY_PATH/LD_PRELOAD was also deleted as it's a placebo security at best - we should trust the execution path that leads us to running sway, and it's way too late to care about those variables since we already started executing our compositor, thus we would be compromised anyway.
* Turn funcs() into funcs(void)Libravatar Arkadiusz Hiler2018-09-30
| | | | If they really do not take undefined number of arguments.
* delete references to swaygrabLibravatar Eric Engestrom2018-07-30
|
* swayidle: cleanupLibravatar emersion2018-07-16
| | | | No idea why wlr_output_layout was involved here.
* Update for swaywm/wlroots#1126Libravatar emersion2018-07-09
|
* swayidle: fix stack overflow on sleepLibravatar Alex Xu (Hello71)2018-06-17
|
* swayidle: doublefork to not leave zombies aroundLibravatar Dominique Martinet2018-06-08
|
* swayidle: terminate if wl_display_dispatch failedLibravatar Dominique Martinet2018-05-16
|
* swayidle: terminate when server diedLibravatar Dominique Martinet2018-05-16
| | | | Fixes #1977.
* Actually fix swayidleLibravatar Drew DeVault2018-05-13
| | | | I also didn't test this commit though so who knows
* swayidle: use wl_event_loop_dispatch_idleLibravatar Drew DeVault2018-05-13
| | | | Fixes #1977
* Add pixman to swayidle depsLibravatar Drew DeVault2018-05-13
|
* Remove asciidoc file for swayidleLibravatar Mattias Eriksson2018-05-13
|
* Idle handling for dpms/lockscreen et alLibravatar Mattias Eriksson2018-05-13
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