| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-09-22 | swaybar, swaylock, & tree/container: Set cairo font options to render text ↵ | Geoff Greer | -2/+13 | |
| and lines with subpixel hinting (if available). | ||||
| 2018-08-30 | Add FreeBSD-specific PAM configuration | sghctoma | -4/+19 | |
| 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. | ||||
| 2018-07-17 | Fix swaylock arguments | Brian Ashworth | -64/+123 | |
| 2018-07-16 | Switch to using getopt_long for config flag | Brian Ashworth | -7/+10 | |
| 2018-07-16 | Remove leftover parens | Brian Ashworth | -1/+1 | |
| 2018-07-16 | Remove int cast after changing to size_t | Brian Ashworth | -1/+1 | |
| 2018-07-16 | Change to size_t in swaylock's get_config_path | Brian Ashworth | -1/+1 | |
| 2018-07-16 | Implement swaylock configuration file parsing | Brian Ashworth | -57/+193 | |
| 2018-07-10 | Change formatting of swaylock usage in the code | Brian Ashworth | -57/+69 | |
| 2018-07-10 | Implement swaylock customization flags | Brian Ashworth | -94/+338 | |
| 2018-07-09 | Update for swaywm/wlroots#1126 | emersion | -15/+15 | |
| 2018-07-07 | swaylock: daemonize after locking | emersion | -2/+11 | |
| 2018-07-07 | swaylock: fix the displaying of "verified" | Dominique Martinet | -1/+14 | |
| Displaying verified after damaging state needs more than one roundtrip, so keep looping until surfaces are not dirty anymore | ||||
| 2018-07-07 | Detect opaque lockscreen when using a solid color | Ryan Dwyer | -3/+6 | |
| 2018-07-07 | Use infinite opaque region in swaylock | Ryan Dwyer | -14/+14 | |
| 2018-07-07 | Use opaque region to determine if frame done should be sent | Ryan Dwyer | -0/+15 | |
| 2018-07-04 | Fix transparency in background images in swaylock | Bor Grošelj Simić | -2/+3 | |
| 2018-07-04 | Fix #1857 | Bor Grošelj Simić | -0/+2 | |
| 2018-07-02 | swaylock daemonize: fix leak of devnull fd | Dominique Martinet | -0/+1 | |
| 2018-06-08 | swaylock: implement ^U to clear buffer | Dominique Martinet | -32/+15 | |
| 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 | ||||
| 2018-05-27 | swaylock: implement a proper render loop | emersion | -57/+105 | |
| 2018-05-25 | Delete old asciidoc man pages | emersion | -117/+0 | |
| 2018-05-23 | swaylock: remove unused field | emersion | -1/+0 | |
| 2018-05-23 | swaylock: don't try to render unconfigured surfaces | emersion | -0/+3 | |
| 2018-05-23 | Merge branch 'master' into fix-swaylock-hotplugging | emersion | -20/+140 | |
| 2018-05-20 | Swaylock: Use calloc instead of malloc | Ryan Dwyer | -1/+1 | |
| 2018-05-20 | Swaylock: Log error if multiple images are defined for the same output | Ryan Dwyer | -0/+17 | |
| 2018-05-20 | Swaylock: Allow per-output images | Ryan Dwyer | -21/+119 | |
| 2018-05-18 | Fix output hotplugging | emersion | -31/+42 | |
| 2018-05-18 | Fix swaylock crashing when unplugging output | emersion | -5/+25 | |
| 2018-05-11 | Add swaylock(1) and swaymsg(1) | Drew DeVault | -0/+103 | |
| 2018-04-24 | Improved key handling in swaylock | Mattias Eriksson | -1/+46 | |
| Make escape clear buffer Add indicator states for ctrl,shift,super et al Add CapsLock indicator | ||||
| 2018-04-20 | [swaylock] Install pam module | Bruno Pinto | -0/+7 | |
| 2018-04-12 | swaylock: Securely zero-out password. | Geoff Greer | -24/+33 | |
| - Replace char* with static array. Any chars > 1024 will be discarded. - mlock() password buffer so it can't be written to swap. - Clear password buffer after auth succeeds or fails. This is basically the same treatment I gave the 0.15 branch in https://github.com/swaywm/sway/pull/1519 | ||||
| 2018-04-05 | Error handling in swaylock daemonize() | Drew DeVault | -1/+23 | |
| Fixes #1741 | ||||
| 2018-04-04 | Address review feedback from @emersion | Drew DeVault | -24/+30 | |
| 2018-04-04 | exit() needs stdlib.h | Drew DeVault | -0/+1 | |
| inb4 acrisci | ||||
| 2018-04-04 | Import stdlib.h and define POSIX macro for rand() | Drew DeVault | -1/+3 | |
| 2018-04-04 | Move extra roundtrip into password.c | Drew DeVault | -1/+1 | |
| 2018-04-04 | Add hidpi support to swaylock | Drew DeVault | -20/+56 | |
| 2018-04-04 | Implement input-inhibit in sway, swaylock | Drew DeVault | -0/+10 | |
| 2018-04-04 | Actually let's not do that TODO | Drew DeVault | -9/+0 | |
| 2018-04-04 | R E N D E R I N G | Drew DeVault | -8/+147 | |
| 2018-04-04 | Verify passwords | Drew DeVault | -1/+57 | |
| 2018-04-04 | Add password buffer, refactor rendering/surfaces | Drew DeVault | -49/+114 | |
| 2018-04-04 | Link swaylock to xkbcommon | Drew DeVault | -0/+1 | |
| 2018-04-04 | Split seat code into its own file | Drew DeVault | -245/+194 | |
| 2018-04-04 | Set up an XKB context for the keyboard | Drew DeVault | -5/+99 | |
| 2018-04-04 | Grab keyboard off of the seat | Drew DeVault | -3/+48 | |
| 2018-04-04 | Initial swaylock port | Drew DeVault | -705/+265 | |
