config: use Super modifier instead of Alt for default mousebinds

...A-Left and A-Right (for move and resize) to avoid interfering with some
clients like CAD programs and games.
This commit is contained in:
Johan Malm 2025-06-13 19:42:43 +01:00 committed by Johan Malm
parent e62f403f56
commit fda63058b2
3 changed files with 13 additions and 13 deletions

View file

@ -184,32 +184,32 @@ static struct mouse_combos {
.action = "Resize",
}, {
.context = "Frame",
.button = "A-Left",
.button = "W-Left",
.event = "Press",
.action = "Focus",
}, {
.context = "Frame",
.button = "A-Left",
.button = "W-Left",
.event = "Press",
.action = "Raise",
}, {
.context = "Frame",
.button = "A-Left",
.button = "W-Left",
.event = "Drag",
.action = "Move",
}, {
.context = "Frame",
.button = "A-Right",
.button = "W-Right",
.event = "Press",
.action = "Focus",
}, {
.context = "Frame",
.button = "A-Right",
.button = "W-Right",
.event = "Press",
.action = "Raise",
}, {
.context = "Frame",
.button = "A-Right",
.button = "W-Right",
.event = "Drag",
.action = "Resize",
}, {