Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-04 | Address review feedback from @emersion | Drew DeVault | |
2018-04-04 | Add hidpi support to swaylock | Drew DeVault | |
2018-04-04 | Implement input-inhibit in sway, swaylock | Drew DeVault | |
2018-04-04 | Actually let's not do that TODO | Drew DeVault | |
2018-04-04 | R E N D E R I N G | Drew DeVault | |
2018-04-04 | Add password buffer, refactor rendering/surfaces | Drew DeVault | |
2018-04-04 | Split seat code into its own file | Drew DeVault | |
2018-04-04 | Set up an XKB context for the keyboard | Drew DeVault | |
2018-04-04 | Grab keyboard off of the seat | Drew DeVault | |
2018-04-04 | Initial swaylock port | Drew DeVault | |
2017-08-09 | Clean up fallthrough issues | Drew DeVault | |
2017-07-31 | Allow swaylock indicator size to be configurable | Calvin Lee | |
2017-04-26 | Add -DVERSION flag for release version numbers | Sebastian Noack | |
2017-03-10 | UnGNUify the codebase | Drew DeVault | |
2017-02-21 | Documentation and style fixes for swaylock | Calvin Lee | |
2017-02-21 | Feature for #1078: Configurable swaylock colors | Calvin Lee | |
Colors are configured through the command line so that swaylock conforms to the i3lock fork 'github.com/chrjguill/i3lock-color'. Differences from it are that one letter options '-r' and '-s' are not implimentend because '-s' is already used by '--scaling' in swaylock. This commit also fixed whitespace in 'include/swaylock/swaylock.h' and changed `parse_color` in 'common/util.h' so that it can accept colors that do not start with a hash. This was done to keep compatability with the i3lock fork. | |||
2016-12-27 | fix #971 | Zandr Martin | |
2016-12-20 | Clear swaylock properly during re-render | Drew DeVault | |
Fixes #999 | |||
2016-10-05 | Explicitly set cairo font to avoid wonky fallback | Vasilij Schneidermann | |
See also https://github.com/i3/i3lock/pull/89 | |||
2016-09-05 | Add client support for HiDPI | Drew DeVault | |
This adds HiDPI support to swaybar, swaybg, and swaylock. | |||
2016-09-01 | Reorganize includes | Drew DeVault | |
2016-07-15 | Fix warning from unused daemon return value | Drew DeVault | |
2016-07-13 | swaylock: Add -f option to detach from the controlling terminal, fixes #725 | David Eklov | |
2016-06-26 | Bug fix: Add missing header file, unistd.h | David Eklov | |
Without unistd.h the following functions getuid, alarm and close are implicitly declared causing compilation to fail due to -Werror=implicit-function-declaration | |||
2016-06-04 | make numpad enter key work in swaylock | Zandr Martin | |
see issue #647 | |||
2016-06-04 | add documentation for client commands | Zandr Martin | |
2016-05-26 | add --no-unlock-indicator to swaylock | Zandr Martin | |
2016-05-26 | clear swaylock password buffer with esc | Zandr Martin | |
for i3lock compatibility | |||
2016-05-26 | clear password buffer with ctrl-u in swaylock | Zandr Martin | |
also prevent screen redraws on modifier key presses | |||
2016-04-25 | swaylock: fix double free | Kevin Hamacher | |
2016-04-10 | swaylock: Handle possible fail on password realloc | Mikkel Oscar Lyderik | |
2016-04-03 | Improve swaylock event flushing | Kevin Hamacher | |
2016-03-31 | swaylock: improve graphical feedback | Kevin Hamacher | |
2016-03-27 | Squash warning about uninitialized variable | Drew DeVault | |
2016-03-25 | Add graphical feedback to swaylock (#526) | Kevin Hamacher | |
2016-03-24 | Replace with in swaylock | Nuew | |
2016-03-24 | Change 'display' to 'output' in swaylock error messages where necessary | Nuew | |
2016-03-24 | Change 'display' to 'output' in swaylock docs where necessary | Nuew | |
2016-03-24 | Add choice of display to --image. | Nuew | |
Additionally - Made background colors display when an image is enabled if a --color is specified. - Link CJson to swaylock. - Add the --socket option to swaylock. | |||
2016-03-24 | swaylock: Interpret XKB_KEY_BackSpace as a deletion instead of a normal key. | Julius Michaelis | |
2016-03-23 | swaylock: Fix crash when unable to connect to wl | Mikkel Oscar Lyderik | |
Prevent swaylock from crashing when it can't connect to wayland for whatever reason. i.e. XDG_RUNTIME_DIR not set. Fix #534 | |||
2016-03-21 | swaylock: Grow the password buffer | Gökberk Yaltıraklı | |
2016-02-26 | Correctly exit sway on errors. | Mikkel Oscar Lyderik | |
Calling `exit` in sway_terminate prevents sway from correctly shutting down (freeing data, cleanly terminating the ipc server, etc.). A better way is to exit straight away if the failure occurs before `wlc_run` and use sway_abort as usual if it occur when wlc is running. | |||
2016-01-28 | swaylock: Allow for transparent color values | crondog | |
There is only a slight issue. When using a transparent color the views are arranged to make room for swaylock which we can now see. I tried removing the arrange call but that just made it worse by putting in an opaque view on the workspace and not making the lockoverlay color. Ill raise an issue if this is not easily solved | |||
2016-01-26 | Remove pointer from swaylock surface | Drew DeVault | |
2016-01-25 | extract cairo_set_source_u32() | Christoph Gysin | |
2016-01-25 | swaylock: support --color | Christoph Gysin | |
2016-01-25 | swaylock: extract render_image | Christoph Gysin | |
2016-01-25 | swaylock: don't memset memory that has been freed | Christoph Gysin | |
swaylock is randomly crashing because we write to password that has already been freed in pam_authenticate(). | |||
2016-01-25 | swaylock: fix pam conversation | Christoph Gysin | |