aboutsummaryrefslogtreecommitdiffstats
path: root/swaylock
Commit message (Collapse)AuthorAge
* fix typoLibravatar bschacht2018-12-02
| | | bahavior -> behavior
* swaylock: fix build with musl libcLibravatar Cameron Nemo2018-11-30
| | | | Signed-off-by: Cameron Nemo <camerontnorman@gmail.com>
* Replace _XOPEN_SOURCE with _POSIX_C_SOURCELibravatar emersion2018-11-25
| | | | And make sure we don't define both in the same source file.
* reordered swaylock manpageLibravatar madblobfish2018-10-27
|
* Merge pull request #2925 from ianyfan/swaylockLibravatar Drew DeVault2018-10-24
|\ | | | | swaylock: exit early if unable to get input inhibitor
| * swaylock: exit on display errorLibravatar Ian Fan2018-10-23
| |
| * swaylock: exit early if unable to inhibit inputLibravatar Ian Fan2018-10-23
| | | | | | | | This stops the program from going into a spinlock without exiting
* | Add multiseat support to swaylockLibravatar Ryan Dwyer2018-10-24
|/
* Change initial background mode before arg parse.Libravatar Connor E2018-10-19
|
* Fix swaylock version stringLibravatar Ryan Dwyer2018-10-16
| | | | | | | The referenced constants were not defined so it always printed "version unknown". Also it would exit with code 1. It now exits with code 0.
* Sway clients: Exit gracefully when compositor is unavailableLibravatar Ryan Dwyer2018-10-15
|
* Remove timerfd from loop implementationLibravatar Ryan Dwyer2018-10-15
| | | | | timerfd doesn't work on the BSDs, so this replaces it with a timespec for the expiry and uses a poll timeout to check the timers when needed.
* swaylock: Don't wait too long for surface damage before verifyingLibravatar Ryan Dwyer2018-10-15
|
* swaylock: clear password after 10 secondsLibravatar Ryan Dwyer2018-10-15
|
* swaylock: Remove indicator after 3 secondsLibravatar Ryan Dwyer2018-10-15
|
* swaylock: Use common event loopLibravatar Ryan Dwyer2018-10-15
|
* swaylock: fix clear_password_bufferLibravatar espkk2018-10-14
|
* Fix swaylock w/shadow on glibc, improve securityLibravatar Drew DeVault2018-10-06
| | | | | | | | | Today I learned that GNU flaunts the POSIX standard in yet another creative way. Additionally, this adds some security improvements, namely: - Zeroing out password buffers in the privileged child process - setuid/setgid after reading /etc/shadow
* swaylock: Support keyboard and pointer disconnects and reconnectsLibravatar Ryan Dwyer2018-10-06
|
* 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.
* Add support for building swaylock without PAMLibravatar Drew DeVault2018-09-28
| | | | | | This involves setuid'ing swaylock, which then forks and drops perms on the parent process. The child process remains root and listens on a pipe for requests to validate passwords against /etc/shadow.
* swaybar, swaylock, & tree/container: Set cairo font options to render text ↵Libravatar Geoff Greer2018-09-22
| | | | and lines with subpixel hinting (if available).
* Add FreeBSD-specific PAM configurationLibravatar sghctoma2018-08-30
| | | | | | | | The "login" PAM configuration means somathing entirely different on FreeBSD than on Linux: if you try to authenticate as the calling user, it OKs the request without prompting for password. The "passwd" config implements the desired functionality, therefore it should be used by swaylock.
* Fix swaylock argumentsLibravatar Brian Ashworth2018-07-17
|
* Switch to using getopt_long for config flagLibravatar Brian Ashworth2018-07-16
|
* Remove leftover parensLibravatar Brian Ashworth2018-07-16
|
* Remove int cast after changing to size_tLibravatar Brian Ashworth2018-07-16
|
* Change to size_t in swaylock's get_config_pathLibravatar Brian Ashworth2018-07-16
|
* Implement swaylock configuration file parsingLibravatar Brian Ashworth2018-07-16
|
* Change formatting of swaylock usage in the codeLibravatar Brian Ashworth2018-07-10
|
* Implement swaylock customization flagsLibravatar Brian Ashworth2018-07-10
|
* Update for swaywm/wlroots#1126Libravatar emersion2018-07-09
|
* swaylock: daemonize after lockingLibravatar emersion2018-07-07
|
* swaylock: fix the displaying of "verified"Libravatar Dominique Martinet2018-07-07
| | | | | Displaying verified after damaging state needs more than one roundtrip, so keep looping until surfaces are not dirty anymore
* Detect opaque lockscreen when using a solid colorLibravatar Ryan Dwyer2018-07-07
|
* Use infinite opaque region in swaylockLibravatar Ryan Dwyer2018-07-07
|
* Use opaque region to determine if frame done should be sentLibravatar Ryan Dwyer2018-07-07
|
* Fix transparency in background images in swaylockLibravatar Bor Grošelj Simić2018-07-04
|
* Fix #1857Libravatar Bor Grošelj Simić2018-07-04
|
* swaylock daemonize: fix leak of devnull fdLibravatar Dominique Martinet2018-07-02
|
* swaylock: implement ^U to clear bufferLibravatar Dominique Martinet2018-06-08
| | | | | | | The whole state->xcb.modifiers thing didn't work at all (always 0) The xkb doc says "[xkb_state_serialize_mods] should not be used in regular clients; please use the xkb_state_mod_*_is_active API instead" so here it is
* swaylock: implement a proper render loopLibravatar emersion2018-05-27
|
* Delete old asciidoc man pagesLibravatar emersion2018-05-25
|
* swaylock: remove unused fieldLibravatar emersion2018-05-23
|
* swaylock: don't try to render unconfigured surfacesLibravatar emersion2018-05-23
|
* Merge branch 'master' into fix-swaylock-hotpluggingLibravatar emersion2018-05-23
|\
| * Swaylock: Use calloc instead of mallocLibravatar Ryan Dwyer2018-05-20
| |
| * Swaylock: Log error if multiple images are defined for the same outputLibravatar Ryan Dwyer2018-05-20
| |
| * Swaylock: Allow per-output imagesLibravatar Ryan Dwyer2018-05-20
| |