From 8bf25a4c8d5420651b83075255bb79fbcd543ecf Mon Sep 17 00:00:00 2001 From: Ferdinand Bachmann Date: Sat, 23 Mar 2024 22:36:41 +0100 Subject: [PATCH] input: add Super modifier name as alternative for Mod4 --- sway/input/keyboard.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c index b97f0152c..f74d0658d 100644 --- a/sway/input/keyboard.c +++ b/sway/input/keyboard.c @@ -32,6 +32,7 @@ static struct modifier_key { { XKB_MOD_NAME_NUM, WLR_MODIFIER_MOD2 }, { "Mod3", WLR_MODIFIER_MOD3 }, { XKB_MOD_NAME_LOGO, WLR_MODIFIER_LOGO }, + { "Super", WLR_MODIFIER_LOGO }, { "Mod5", WLR_MODIFIER_MOD5 }, };