From 84bfc6c7edf1465096f6663c6d931981bd924280 Mon Sep 17 00:00:00 2001 From: Gabriel Sanches Date: Mon, 29 Apr 2019 11:10:31 -0300 Subject: [PATCH] Submit password by pressing Ctrl+m (close #75) --- password.c | 1 + 1 file changed, 1 insertion(+) diff --git a/password.c b/password.c index 2c7f0f9..a5c0211 100644 --- a/password.c +++ b/password.c @@ -137,6 +137,7 @@ void swaylock_handle_key(struct swaylock_state *state, schedule_indicator_clear(state); schedule_password_clear(state); break; + case XKB_KEY_m: /* fallthrough */ case XKB_KEY_d: if (state->xkb.control) { submit_password(state);