From f366a5dc87152c698c4327ec81a630847128cd28 Mon Sep 17 00:00:00 2001 From: Ron Waldon-Howe Date: Sun, 31 Dec 2023 04:52:04 +1100 Subject: [PATCH] fix: Super+Escape locks screen per Pop!_OS convention --- config.ron | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.ron b/config.ron index 5582c50b..dbfa2515 100644 --- a/config.ron +++ b/config.ron @@ -1,7 +1,8 @@ ( key_bindings: { (modifiers: [Super, Shift], key: "Escape"): Terminate, - (modifiers: [Super], key: "Escape"): Debug, + (modifiers: [Super, Ctrl], key: "Escape"): Debug, + (modifiers: [Super], key: "Escape"): Spawn("cosmic-greeter"), (modifiers: [Super], key: "q"): Close, (modifiers: [Super], key: "1"): Workspace(1),