Map ('5') and allow mod5mask (altgr) as a modifier.

From Artturi Alm (though changed from 'm' to '5')
This commit is contained in:
okan
2020-02-03 16:38:02 +00:00
parent 83de84b7f8
commit d3410dd10d
3 changed files with 9 additions and 14 deletions

3
conf.c
View File

@@ -197,10 +197,11 @@ static const struct {
const char ch;
int mask;
} bind_mods[] = {
{ 'S', ShiftMask },
{ 'C', ControlMask },
{ 'M', Mod1Mask },
{ '4', Mod4Mask },
{ 'S', ShiftMask },
{ '5', Mod5Mask },
};
static const struct {
const char *key;