aboutsummaryrefslogtreecommitdiff
path: root/swayidle
AgeCommit message (Collapse)AuthorLines
2018-09-30Add support for installing binaries with DT_RPATHArkadiusz Hiler-0/+1
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.
2018-09-30Turn funcs() into funcs(void)Arkadiusz Hiler-2/+2
If they really do not take undefined number of arguments.
2018-07-30delete references to swaygrabEric Engestrom-1/+1
2018-07-16swayidle: cleanupemersion-9/+6
No idea why wlr_output_layout was involved here.
2018-07-09Update for swaywm/wlroots#1126emersion-39/+39
2018-06-17swayidle: fix stack overflow on sleepAlex Xu (Hello71)-1/+2
2018-06-08swayidle: doublefork to not leave zombies aroundDominique Martinet-5/+18
2018-05-16swayidle: terminate if wl_display_dispatch failedDominique Martinet-1/+4
2018-05-16swayidle: terminate when server diedDominique Martinet-0/+3
Fixes #1977.
2018-05-13Actually fix swayidleDrew DeVault-2/+2
I also didn't test this commit though so who knows
2018-05-13swayidle: use wl_event_loop_dispatch_idleDrew DeVault-2/+3
Fixes #1977
2018-05-13Add pixman to swayidle depsDrew DeVault-0/+1
2018-05-13Remove asciidoc file for swayidleMattias Eriksson-67/+0
2018-05-13Idle handling for dpms/lockscreen et alMattias Eriksson-0/+559
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