sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 9877189ea3574625e165202c61a497bdaeb46656
parent cf7c77e56ab895efd3b113debd53fc5881dd7205
Author: Milkey Mouse <milkeymouse@meme.institute>
Date:   Thu, 20 Dec 2018 12:19:21 -0800

swaylock: Clear password buffer on Ctrl-C

I've got in the habit of using Ctrl-C with login(1) to restart password entry.
If Sway does the same thing I don't have to retrain my login muscle memory ;)

Diffstat:
Mswaylock/password.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/swaylock/password.c b/swaylock/password.c @@ -165,6 +165,7 @@ void swaylock_handle_key(struct swaylock_state *state, schedule_indicator_clear(state); schedule_password_clear(state); break; + case XKB_KEY_c: /* fallthrough */ case XKB_KEY_u: if (state->xkb.control) { clear_password_buffer(&state->password);