cosmetic
This commit is contained in:
parent
e3c0478434
commit
604ab3e702
8
config.c
8
config.c
|
@ -40,7 +40,9 @@ typedef struct
|
||||||
} KeyMod;
|
} KeyMod;
|
||||||
|
|
||||||
/** List of keyname and corresponding X11 mask codes */
|
/** List of keyname and corresponding X11 mask codes */
|
||||||
static const KeyMod KeyModList[] = { {"Shift", ShiftMask},
|
static const KeyMod KeyModList[] =
|
||||||
|
{
|
||||||
|
{"Shift", ShiftMask},
|
||||||
{"Lock", LockMask},
|
{"Lock", LockMask},
|
||||||
{"Control", ControlMask},
|
{"Control", ControlMask},
|
||||||
{"Mod1", Mod1Mask},
|
{"Mod1", Mod1Mask},
|
||||||
|
@ -52,7 +54,9 @@ static const KeyMod KeyModList[] = { {"Shift", ShiftMask},
|
||||||
};
|
};
|
||||||
|
|
||||||
/** List of available layouts and link between name and functions */
|
/** List of available layouts and link between name and functions */
|
||||||
static const NameFuncLink LayoutsList[] = { {"tile", tile},
|
static const NameFuncLink LayoutsList[] =
|
||||||
|
{
|
||||||
|
{"tile", tile},
|
||||||
{"tileleft", tileleft},
|
{"tileleft", tileleft},
|
||||||
{"floating", floating},
|
{"floating", floating},
|
||||||
{"grid", grid},
|
{"grid", grid},
|
||||||
|
|
Loading…
Reference in New Issue