From ba31e2eaee6a08514a449916491f9a446e745770 Mon Sep 17 00:00:00 2001 From: HardDie Date: Thu, 15 Aug 2019 16:17:04 +0300 Subject: [PATCH] Submit password by pressing Ctrl+m As it work in emacs style console --- password.c | 1 + 1 file changed, 1 insertion(+) diff --git a/password.c b/password.c index a5c0211..e1a1d9a 100644 --- a/password.c +++ b/password.c @@ -139,6 +139,7 @@ void swaylock_handle_key(struct swaylock_state *state, break; case XKB_KEY_m: /* fallthrough */ case XKB_KEY_d: + case XKB_KEY_j: if (state->xkb.control) { submit_password(state); break;